aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorGeoff Voelker1996-03-19 02:01:47 +0000
committerGeoff Voelker1996-03-19 02:01:47 +0000
commitbcfe87c45142a10582a17744b29c30723c029a6a (patch)
treeef9d27f1d51c3e9a1dec909e935efc6bb655d9a4 /lib-src
parentc6897d8e06531b769b9e0386c7008c1a46ac96d4 (diff)
downloademacs-bcfe87c45142a10582a17744b29c30723c029a6a.tar.gz
emacs-bcfe87c45142a10582a17744b29c30723c029a6a.zip
(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)
43 return GetCurrentDirectory (MAXPATHLEN, dir); 43 return GetCurrentDirectory (MAXPATHLEN, dir);
44} 44}
45 45
46int
47getpid ()
48{
49 return _getpid ();
50}
51
46static HANDLE getppid_parent; 52static HANDLE getppid_parent;
47static int getppid_ppid; 53static int getppid_ppid;
48 54