]> git.eshelyaron.com Git - emacs.git/commitdiff
(getpid): New function.
authorGeoff Voelker <voelker@cs.washington.edu>
Tue, 19 Mar 1996 02:01:47 +0000 (02:01 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Tue, 19 Mar 1996 02:01:47 +0000 (02:01 +0000)
lib-src/ntlib.c

index a6e65fc2cd190a2c84ed8f32e05a687eb6e03ecb..dd294a5a149055a956f219faa9f7b5838fd7a005 100644 (file)
@@ -43,6 +43,12 @@ getwd (char *dir)
   return GetCurrentDirectory (MAXPATHLEN, dir);
 }
 
+int
+getpid ()
+{
+  return _getpid ();
+}
+
 static HANDLE getppid_parent;
 static int    getppid_ppid;