Nicholas Nethercote 62851019a9 Suppress an error within syslog(). Patch from Dan Kegel. Fixes bug 191192.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10438
2009-07-13 07:02:26 +00: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;
}