1 // syslog() needs a suppression on Mac OS X (bug 191192). This tests that. 2 3 #include <syslog.h> 4 main()5 int main() 6 { 7 syslog(LOG_USER|LOG_DEBUG, "valgrind/none/tests/syslog: test message"); 8 return 0; 9 } 10