From c7e7790bfb7b80b4b7362ccbdc9ed044caf6d0a1 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:15:50 +0000 Subject: [PATCH] AIX implementation of getpid. --- sysdeps/unix/sysv/aix/getpid.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 sysdeps/unix/sysv/aix/getpid.c diff --git a/sysdeps/unix/sysv/aix/getpid.c b/sysdeps/unix/sysv/aix/getpid.c new file mode 100644 index 0000000..67ef7ea --- /dev/null +++ b/sysdeps/unix/sysv/aix/getpid.c @@ -0,0 +1,6 @@ +/* This is a system call. We only have to provide the wrapper. */ +int +__getpid (void) +{ + return getpid (); +} -- 2.7.4