aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ntlib.c6
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
46int
47getpid ()
48{
49 return _getpid ();
50}
51
46static HANDLE getppid_parent; 52static HANDLE getppid_parent;
47static int getppid_ppid; 53static int getppid_ppid;
48 54