1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

Added win32 include for getpid()

svn path=/trunk/icecast/; revision=5681
This commit is contained in:
oddsock 2003-12-04 16:24:34 +00:00
parent 70ae454647
commit 6a67e82db8

View File

@ -44,6 +44,8 @@
#include <libxml/xmlmemory.h> #include <libxml/xmlmemory.h>
#ifdef _WIN32 #ifdef _WIN32
/* For getpid() */
#include <process.h>
#define snprintf _snprintf #define snprintf _snprintf
#define getpid _getpid #define getpid _getpid
#endif #endif