1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-16 06:15: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 7ba17e3285
commit 773b2c0915

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;
}