comparison lib-src/ntlib.c @ 14837:730a5bd19776

(getpid): New function.
author Geoff Voelker <voelker@cs.washington.edu>
date Tue, 19 Mar 1996 02:01:47 +0000
parents ee40177f6c68
children 92326afec2a6
comparison
equal deleted inserted replaced
14836:6d0ad3e40507 14837:730a5bd19776
39 /* Get the current working directory. */ 39 /* Get the current working directory. */
40 int 40 int
41 getwd (char *dir) 41 getwd (char *dir)
42 { 42 {
43 return GetCurrentDirectory (MAXPATHLEN, dir); 43 return GetCurrentDirectory (MAXPATHLEN, dir);
44 }
45
46 int
47 getpid ()
48 {
49 return _getpid ();
44 } 50 }
45 51
46 static HANDLE getppid_parent; 52 static HANDLE getppid_parent;
47 static int getppid_ppid; 53 static int getppid_ppid;
48 54