summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libcsupport/src/__getpid.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/libcsupport/src/__getpid.c')
-rw-r--r--c/src/exec/libcsupport/src/__getpid.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/c/src/exec/libcsupport/src/__getpid.c b/c/src/exec/libcsupport/src/__getpid.c
deleted file mode 100644
index 54a7c980e0..0000000000
--- a/c/src/exec/libcsupport/src/__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();
-}
-