diff options
Diffstat (limited to 'lib-src')
| -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) | |||
| 43 | return GetCurrentDirectory (MAXPATHLEN, dir); | 43 | return GetCurrentDirectory (MAXPATHLEN, dir); |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | int | ||
| 47 | getpid () | ||
| 48 | { | ||
| 49 | return _getpid (); | ||
| 50 | } | ||
| 51 | |||
| 46 | static HANDLE getppid_parent; | 52 | static HANDLE getppid_parent; |
| 47 | static int getppid_ppid; | 53 | static int getppid_ppid; |
| 48 | 54 | ||