blob: b8130209c68bb11e78475a0d3cd67d7dae3b0e3e [file]
#include <syslog.h>
#include <stddef.h>
int main() {
// The current implementation of syslog that we use comes
// from musl and doesn't do anything useful under emscripten.
// This test exists simply to ensure that it compiles and links.
syslog(LOG_CRIT, "%s", "log1");
openlog(NULL, LOG_CONS, LOG_USER);
syslog(LOG_CRIT, "%s", "log2");
}