summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/__getpid.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-05-17 18:33:07 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-05-17 18:33:07 +0000
commit166475ad3db4bed5e8ee5b5c97816df365c10da1 (patch)
treebb19c6a2118e1de81ad774418c2002ae951a981b /c/src/lib/libc/__getpid.c
parent2002-05-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-166475ad3db4bed5e8ee5b5c97816df365c10da1.tar.bz2
2002-05-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Remove lib.
Diffstat (limited to 'c/src/lib/libc/__getpid.c')
-rw-r--r--c/src/lib/libc/__getpid.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/c/src/lib/libc/__getpid.c b/c/src/lib/libc/__getpid.c
deleted file mode 100644
index 54a7c980e0..0000000000
--- a/c/src/lib/libc/__getpid.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Some C Libraries reference this routine since they think getpid is
- * a real system call.
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <unistd.h>
-
-pid_t __getpid(void)
-{
- return getpid();
-}
-