Comment correction. syslog() syntax is:

void syslog(int facility_priority, const char* format, ...);

This is indeed how it is used in private_typeinfo.cpp.

llvm-svn: 195452
This commit is contained in:
Yaron Keren 2013-11-22 12:11:40 +00:00
parent f2edc07571
commit dde62a377c

View File

@ -27,7 +27,7 @@
// The current implementation of _LIBCXX_DYNAMIC_FALLBACK requires a
// printf-like function called syslog:
//
// void syslog(const char* format, ...);
// void syslog(int facility_priority, const char* format, ...);
//
// If you want this functionality but your platform doesn't have syslog,
// just implement it in terms of fprintf(stderr, ...).