blob: 418e811d0c53ada9f3d369e1d42b4632c207553b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
#if defined(_WIN32)
/* Windows doesn't have the concept of a system log, so just
** do nothing here.
*/
void
syslog(int pri, const char *fmt, ...)
{
return;
}
#endif
|