[_MSC_VER]: Include stdlib.h and process.h.

[_MSC_VER] (getpid): Define as macro--translate it to _getpid.
This commit is contained in:
Richard M. Stallman
1997-01-02 07:03:45 +00:00
parent 42f95d63c2
commit d36e30d8c2

View File

@@ -2,6 +2,12 @@
#include <io.h>
#endif
#ifdef _MSC_VER
#include <stdlib.h>
#include <process.h>
#define getpid _getpid
#endif
#if defined(HAVE_STDLIB_H) || defined(MSDOS)
#include <stdlib.h>
#endif