summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1996-03-19 02:01:47 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1996-03-19 02:01:47 +0000
commit856223b86f4c770e7f201538574bf60c7db2a7e0 (patch)
treef08d3d4a1b45709be7b36caea2be97bf182f26ff /lib-src
parent22ece80732503e5a3f61e352bfcaa3018b1d6789 (diff)
downloademacs-856223b86f4c770e7f201538574bf60c7db2a7e0.tar.gz
(getpid): New function.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ntlib.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib-src/ntlib.c b/lib-src/ntlib.c
index a6e65fc2cd1..dd294a5a149 100644
--- a/lib-src/ntlib.c
+++ b/lib-src/ntlib.c
@@ -43,6 +43,12 @@ getwd (char *dir)
return GetCurrentDirectory (MAXPATHLEN, dir);
}
+int
+getpid ()
+{
+ return _getpid ();
+}
+
static HANDLE getppid_parent;
static int getppid_ppid;