Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/sim/testsuite/cris/c/pipe7.c
2023-03-06 14:48:14 +01:00

21 lines
297 B
C

/* Check for proper pipe semantics at corner cases.
#progos: linux
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
int main (void)
{
if (pipe (NULL) != -1
|| errno != EFAULT)
{
perror ("pipe");
abort ();
}
printf ("pass\n");
exit (0);
}