1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-08 08:26:14 +00:00
2015-12-13 22:34:58 +09:00

10 lines
203 B
C

// syslog() needs a suppression on Mac OS X (bug 191192). This tests that.
#include <syslog.h>
int main()
{
syslog(LOG_USER|LOG_DEBUG, "valgrind/none/tests/syslog: test message");
return 0;
}