diff options
| author | Geoff Voelker | 1996-03-19 02:01:47 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1996-03-19 02:01:47 +0000 |
| commit | bcfe87c45142a10582a17744b29c30723c029a6a (patch) | |
| tree | ef9d27f1d51c3e9a1dec909e935efc6bb655d9a4 /lib-src | |
| parent | c6897d8e06531b769b9e0386c7008c1a46ac96d4 (diff) | |
| download | emacs-bcfe87c45142a10582a17744b29c30723c029a6a.tar.gz emacs-bcfe87c45142a10582a17744b29c30723c029a6a.zip | |
(getpid): New function.
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 | ||