diff options
Diffstat (limited to 'misc/err.h')
-rw-r--r-- | misc/err.h | 34 |
1 files changed, 17 insertions, 17 deletions
@@ -1,5 +1,5 @@ /* 4.4BSD utility functions for error messages. - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -32,26 +32,26 @@ __BEGIN_DECLS /* Print "program: ", FORMAT, ": ", the standard error string for errno, and a newline, on stderr. */ -extern void warn __P ((__const char *__format, ...)) - __attribute__ ((__format__ (__printf__, 1, 2))); -extern void vwarn __P ((__const char *__format, __gnuc_va_list)) - __attribute__ ((__format__ (__printf__, 1, 0))); +extern void warn (__const char *__format, ...) + __THROW __attribute__ ((__format__ (__printf__, 1, 2))); +extern void vwarn (__const char *__format, __gnuc_va_list) + __THROW __attribute__ ((__format__ (__printf__, 1, 0))); /* Likewise, but without ": " and the standard error string. */ -extern void warnx __P ((__const char *__format, ...)) - __attribute__ ((__format__ (__printf__, 1, 2))); -extern void vwarnx __P ((__const char *__format, __gnuc_va_list)) - __attribute__ ((__format__ (__printf__, 1, 0))); +extern void warnx (__const char *__format, ...) + __THROW __attribute__ ((__format__ (__printf__, 1, 2))); +extern void vwarnx (__const char *__format, __gnuc_va_list) + __THROW __attribute__ ((__format__ (__printf__, 1, 0))); /* Likewise, and then exit with STATUS. */ -extern void err __P ((int __status, __const char *__format, ...)) - __attribute__ ((__noreturn__, __format__ (__printf__, 2, 3))); -extern void verr __P ((int __status, __const char *__format, __gnuc_va_list)) - __attribute__ ((__noreturn__, __format__ (__printf__, 2, 0))); -extern void errx __P ((int __status, __const char *__format, ...)) - __attribute__ ((__noreturn__, __format__ (__printf__, 2, 3))); -extern void verrx __P ((int __status, __const char *, __gnuc_va_list)) - __attribute__ ((__noreturn__, __format__ (__printf__, 2, 0))); +extern void err (int __status, __const char *__format, ...) + __THROW __attribute__ ((__noreturn__, __format__ (__printf__, 2, 3))); +extern void verr (int __status, __const char *__format, __gnuc_va_list) + __THROW __attribute__ ((__noreturn__, __format__ (__printf__, 2, 0))); +extern void errx (int __status, __const char *__format, ...) + __THROW __attribute__ ((__noreturn__, __format__ (__printf__, 2, 3))); +extern void verrx (int __status, __const char *, __gnuc_va_list) + __THROW __attribute__ ((__noreturn__, __format__ (__printf__, 2, 0))); __END_DECLS |