diff options
Diffstat (limited to 'src/unistd/getppid.c')
| -rw-r--r-- | src/unistd/getppid.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/unistd/getppid.c b/src/unistd/getppid.c new file mode 100644 index 00000000..d0518c3e --- /dev/null +++ b/src/unistd/getppid.c @@ -0,0 +1,12 @@ +#include "stddef.h" +#include "sys/types.h" +#include <unistd.h> +#include "nonstd/syscall.h" + +pid_t getppid(void) +{ + SCNOFAIL(); +} +/* +POSIX(1) +*/ |
