diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1996-03-19 02:01:47 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1996-03-19 02:01:47 +0000 |
commit | bcfe87c45142a10582a17744b29c30723c029a6a (patch) | |
tree | ef9d27f1d51c3e9a1dec909e935efc6bb655d9a4 | |
parent | c6897d8e06531b769b9e0386c7008c1a46ac96d4 (diff) | |
download | emacs-bcfe87c45142a10582a17744b29c30723c029a6a.tar.gz |
(getpid): New function.
-rw-r--r-- | lib-src/ntlib.c | 6 |
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; |