1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00: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
#define mutex_t CRITICAL_SECTION
#define snprintf _snprintf
#define vsnprintf _vsnprintf
#else
#define mutex_t pthread_mutex_t
#endif
@ -84,7 +86,8 @@ int log_open(const char *filename)
_release_log_id(log_id);
return LOG_ECANTOPEN;
}
setvbuf(loglist[log_id].logfile, NULL, _IOLBF, 0);
setvbuf(loglist[log_id].logfile, NULL, _IOLBF, 0);
return log_id;
}