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 | 856223b86f4c770e7f201538574bf60c7db2a7e0 (patch) | |
tree | f08d3d4a1b45709be7b36caea2be97bf182f26ff /lib-src/ntlib.c | |
parent | 22ece80732503e5a3f61e352bfcaa3018b1d6789 (diff) | |
download | emacs-856223b86f4c770e7f201538574bf60c7db2a7e0.tar.gz |
(getpid): New function.
Diffstat (limited to 'lib-src/ntlib.c')
-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; |