forked from OSchip/llvm-project
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:
parent
f2edc07571
commit
dde62a377c
libcxxabi/src
|
@ -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, ...).
|
||||
|
|
Loading…
Reference in New Issue