1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

(getpid): New function.

This commit is contained in:
Geoff Voelker 1996-03-19 02:01:47 +00:00
parent c6897d8e06
commit bcfe87c451

View file

@ -43,6 +43,12 @@ getwd (char *dir)
return GetCurrentDirectory (MAXPATHLEN, dir);
}
int
getpid ()
{
return _getpid ();
}
static HANDLE getppid_parent;
static int getppid_ppid;