allwinner_a64/android/external/valgrind/none/tests/syslog.c
2018-08-08 16:14:42 +08:00

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