summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/common/getppid.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2006-02-28 03:18:23 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2006-02-28 03:18:23 +0000
commit675d62ac876ffe4719580d45b8c9469934ccf6d7 (patch)
treee666bd4a1d816842c070e4928715d66b82655fc2 /libc/sysdeps/linux/common/getppid.c
parentfd666fca933f7241ff75d06ff36c9282fd443335 (diff)
downloaduClibc-alpine-675d62ac876ffe4719580d45b8c9469934ccf6d7.tar.bz2
uClibc-alpine-675d62ac876ffe4719580d45b8c9469934ccf6d7.tar.xz
Merge from trunk.
Diffstat (limited to 'libc/sysdeps/linux/common/getppid.c')
-rw-r--r--libc/sysdeps/linux/common/getppid.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/libc/sysdeps/linux/common/getppid.c b/libc/sysdeps/linux/common/getppid.c
index b2944e5e0..81d613bb9 100644
--- a/libc/sysdeps/linux/common/getppid.c
+++ b/libc/sysdeps/linux/common/getppid.c
@@ -2,18 +2,19 @@
/*
* getppid() for uClibc
*
- * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org>
+ * Copyright (C) 2000-2006 by Erik Andersen <andersen@codepoet.org>
*
* GNU Library General Public License (LGPL) version 2 or later.
*/
#include "syscalls.h"
-# include <unistd.h>
-# ifdef __NR_getppid
+#include <unistd.h>
+#ifdef __NR_getppid
_syscall0(pid_t, getppid);
-# else
+#else
+libc_hidden_proto(getpid)
pid_t getppid(void)
{
- return (__getpid());
+ return getpid();
}
-# endif
+#endif