diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-11-26 15:45:55 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-11-26 15:45:55 +0000 |
commit | 249f9ff259992908829f9d06a0b4688cf21ea00e (patch) | |
tree | 292da38d7e4d88f681732b581dc3d93a97e2ab4f /include/sys/syslog.h | |
parent | ce48bd0f2a31f63ac7fed36c756b60ce8106b27f (diff) | |
download | uClibc-alpine-249f9ff259992908829f9d06a0b4688cf21ea00e.tar.bz2 uClibc-alpine-249f9ff259992908829f9d06a0b4688cf21ea00e.tar.xz |
Synch with trunk @ 24157
Step 11: More libc_hidden_proto removal
Diffstat (limited to 'include/sys/syslog.h')
-rw-r--r-- | include/sys/syslog.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sys/syslog.h b/include/sys/syslog.h index 3f5e6b297..8fc768846 100644 --- a/include/sys/syslog.h +++ b/include/sys/syslog.h @@ -179,12 +179,14 @@ __BEGIN_DECLS This function is a possible cancellation point and therefore not marked with __THROW. */ extern void closelog (void); +libc_hidden_proto(closelog) /* Open connection to system logger. This function is a possible cancellation point and therefore not marked with __THROW. */ extern void openlog (__const char *__ident, int __option, int __facility); +libc_hidden_proto(openlog) /* Set the log mask level. */ extern int setlogmask (int __mask) __THROW; @@ -195,6 +197,7 @@ extern int setlogmask (int __mask) __THROW; marked with __THROW. */ extern void syslog (int __pri, __const char *__fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3))); +libc_hidden_proto(syslog) #ifdef __USE_BSD /* Generate a log message using FMT and using arguments pointed to by AP. @@ -205,6 +208,7 @@ extern void syslog (int __pri, __const char *__fmt, ...) therefore not marked with __THROW. */ extern void vsyslog (int __pri, __const char *__fmt, __gnuc_va_list __ap) __attribute__ ((__format__ (__printf__, 2, 0))); +libc_hidden_proto(vsyslog) #endif __END_DECLS |