From bcfe87c45142a10582a17744b29c30723c029a6a Mon Sep 17 00:00:00 2001 From: Geoff Voelker Date: Tue, 19 Mar 1996 02:01:47 +0000 Subject: [PATCH] (getpid): New function. --- lib-src/ntlib.c | 6 ++++++ 1 file changed, 6 insertions(+) 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; -- 2.39.2