1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* misc/sys/syslog.h (vsyslog): Remove __THROW.

	* posix/unistd.h: Remove __THROW from getpass prototype.
This commit is contained in:
Ulrich Drepper
2003-08-30 09:32:23 +00:00
parent cdbfa9f89f
commit b9cc1576e9
2 changed files with 4 additions and 2 deletions

View File

@ -198,7 +198,7 @@ extern void syslog (int __pri, __const char *__fmt, ...)
or due to the implementation it is a cancellation point and
therefore not marked with __THROW. */
extern void vsyslog (int __pri, __const char *__fmt, __gnuc_va_list __ap)
__THROW __attribute__ ((__format__(__printf__, 2, 0)));
__attribute__ ((__format__(__printf__, 2, 0)));
#endif
__END_DECLS