[BACK]Return to err.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/err.h between version 1.6 and 1.7

version 1.6, 2001/07/19 15:06:22 version 1.7, 2001/08/07 21:34:42
Line 52 
Line 52 
 __BEGIN_DECLS  __BEGIN_DECLS
   
 __dead void     err __P((int, const char *, ...))  __dead void     err __P((int, const char *, ...))
                         __attribute__((__noreturn__, __format__ (printf, 2, 3)));                          __attribute__((__format__ (printf, 2, 3)));
 __dead void     verr __P((int, const char *, _BSD_VA_LIST_))  __dead void     verr __P((int, const char *, _BSD_VA_LIST_))
                         __attribute__((__noreturn__, __format__ (printf, 2, 0)));                          __attribute__((__format__ (printf, 2, 0)));
 __dead void     errx __P((int, const char *, ...))  __dead void     errx __P((int, const char *, ...))
                         __attribute__((__noreturn__, __format__ (printf, 2, 3)));                          __attribute__((__format__ (printf, 2, 3)));
 __dead void     verrx __P((int, const char *, _BSD_VA_LIST_))  __dead void     verrx __P((int, const char *, _BSD_VA_LIST_))
                         __attribute__((__noreturn__, __format__ (printf, 2, 0)));                          __attribute__((__format__ (printf, 2, 0)));
 void            warn __P((const char *, ...))  void            warn __P((const char *, ...))
                         __attribute__((__format__ (printf, 1, 2)));                          __attribute__((__format__ (printf, 1, 2)));
 void            vwarn __P((const char *, _BSD_VA_LIST_))  void            vwarn __P((const char *, _BSD_VA_LIST_))
Line 73 
Line 73 
  * versions of err*,warn* do not get used.   * versions of err*,warn* do not get used.
  */   */
 __dead void     _err __P((int, const char *, ...))  __dead void     _err __P((int, const char *, ...))
                         __attribute__((__noreturn__, __format__ (printf, 2, 3)));                          __attribute__((__format__ (printf, 2, 3)));
 __dead void     _verr __P((int, const char *, _BSD_VA_LIST_))  __dead void     _verr __P((int, const char *, _BSD_VA_LIST_))
                         __attribute__((__noreturn__, __format__ (printf, 2, 0)));                          __attribute__((__format__ (printf, 2, 0)));
 __dead void     _errx __P((int, const char *, ...))  __dead void     _errx __P((int, const char *, ...))
                         __attribute__((__noreturn__, __format__ (printf, 2, 3)));                          __attribute__((__format__ (printf, 2, 3)));
 __dead void     _verrx __P((int, const char *, _BSD_VA_LIST_))  __dead void     _verrx __P((int, const char *, _BSD_VA_LIST_))
                         __attribute__((__noreturn__, __format__ (printf, 2, 0)));                          __attribute__((__format__ (printf, 2, 0)));
 void            _warn __P((const char *, ...))  void            _warn __P((const char *, ...))
                         __attribute__((__format__ (printf, 1, 2)));                          __attribute__((__format__ (printf, 1, 2)));
 void            _vwarn __P((const char *, _BSD_VA_LIST_))  void            _vwarn __P((const char *, _BSD_VA_LIST_))

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7