From: Geoff Voelker Date: Tue, 19 Mar 1996 02:01:47 +0000 (+0000) Subject: (getpid): New function. X-Git-Tag: emacs-19.34~1023 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bcfe87c45142a10582a17744b29c30723c029a6a;p=emacs.git (getpid): New function. --- 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;