1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-11-03 04:17:17 -05:00

Microsoft has '_' in front of random functions. We typedef this away.

svn path=/trunk/log/; revision=2192
This commit is contained in:
Jack Moffitt 2001-10-20 05:13:12 +00:00
parent 64942a4113
commit f69b99f1c8

View File

@ -17,6 +17,8 @@
#ifdef _WIN32 #ifdef _WIN32
#define mutex_t CRITICAL_SECTION #define mutex_t CRITICAL_SECTION
#define snprintf _snprintf
#define vsnprintf _vsnprintf
#else #else
#define mutex_t pthread_mutex_t #define mutex_t pthread_mutex_t
#endif #endif
@ -84,6 +86,7 @@ int log_open(const char *filename)
_release_log_id(log_id); _release_log_id(log_id);
return LOG_ECANTOPEN; return LOG_ECANTOPEN;
} }
setvbuf(loglist[log_id].logfile, NULL, _IOLBF, 0); setvbuf(loglist[log_id].logfile, NULL, _IOLBF, 0);
return log_id; return log_id;