From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:15:50 +0000 (+0000) Subject: AIX implementation of getpid. X-Git-Tag: glibc-2.16-ports-before-merge~2610 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c7e7790bfb7b80b4b7362ccbdc9ed044caf6d0a1;p=thirdparty%2Fglibc.git AIX implementation of getpid. --- diff --git a/sysdeps/unix/sysv/aix/getpid.c b/sysdeps/unix/sysv/aix/getpid.c new file mode 100644 index 00000000000..67ef7eaf796 --- /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 (); +}