From 253a32e2f9ff1cbb8edbe7c79834a678daebeb93 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 9 Feb 2019 13:14:01 -0500 Subject: merge POSIX.1-1988/1990 --- src/unistd/getppid.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/unistd/getppid.c (limited to 'src/unistd/getppid.c') 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 +#include "nonstd/syscall.h" + +pid_t getppid(void) +{ + SCNOFAIL(); +} +/* +POSIX(1) +*/ -- cgit v1.2.1