blob: 0f21a811c08a02b0b659f762c196f72752f070a0 [file] [log] [blame]
njnd4f90d22009-07-13 07:02:26 +00001// syslog() needs a suppression on Mac OS X (bug 191192). This tests that.
2
3#include <syslog.h>
4
5int main()
6{
7 syslog(LOG_USER|LOG_DEBUG, "valgrind/none/tests/syslog: test message");
8 return 0;
9}