summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-01-20 23:27:30 +0000
committerMike Frysinger <vapier@gentoo.org>2006-01-20 23:27:30 +0000
commit9ce08d170e67e642aa9388ea53a4aac4c0b6f9fe (patch)
treeb5e38a4bfef778586997dab3a8c978b30ab0c0eb /libc/sysdeps/linux/common
parentefa7d2147f23dc8c5be68358e879ac743449a081 (diff)
fix building on alpha
Diffstat (limited to 'libc/sysdeps/linux/common')
-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