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

Diff for /src/include/err.h between version 1.11 and 1.12

version 1.11, 2014/04/21 16:13:24 version 1.12, 2014/04/22 00:33:02
Line 44 
Line 44 
                         __attribute__((__format__ (printf, 2, 3)));                          __attribute__((__format__ (printf, 2, 3)));
 __dead void     verr(int, const char *, __va_list)  __dead void     verr(int, const char *, __va_list)
                         __attribute__((__format__ (printf, 2, 0)));                          __attribute__((__format__ (printf, 2, 0)));
   __dead void     errc(int, int, const char *, ...)
                           __attribute__((__format__ (printf, 3, 4)));
   __dead void     verrc(int, int, const char *, __va_list)
                           __attribute__((__format__ (printf, 3, 0)));
 __dead void     errx(int, const char *, ...)  __dead void     errx(int, const char *, ...)
                         __attribute__((__format__ (printf, 2, 3)));                          __attribute__((__format__ (printf, 2, 3)));
 __dead void     verrx(int, const char *, __va_list)  __dead void     verrx(int, const char *, __va_list)
Line 52 
Line 56 
                         __attribute__((__format__ (printf, 1, 2)));                          __attribute__((__format__ (printf, 1, 2)));
 void            vwarn(const char *, __va_list)  void            vwarn(const char *, __va_list)
                         __attribute__((__format__ (printf, 1, 0)));                          __attribute__((__format__ (printf, 1, 0)));
   void            warnc(int, const char *, ...)
                           __attribute__((__format__ (printf, 2, 3)));
   void            vwarnc(int, const char *, __va_list)
                           __attribute__((__format__ (printf, 2, 0)));
 void            warnx(const char *, ...)  void            warnx(const char *, ...)
                         __attribute__((__format__ (printf, 1, 2)));                          __attribute__((__format__ (printf, 1, 2)));
 void            vwarnx(const char *, __va_list)  void            vwarnx(const char *, __va_list)
Line 64 
Line 72 
                         __attribute__((__format__ (printf, 2, 3)));                          __attribute__((__format__ (printf, 2, 3)));
 __dead void     _verr(int, const char *, __va_list)  __dead void     _verr(int, const char *, __va_list)
                         __attribute__((__format__ (printf, 2, 0)));                          __attribute__((__format__ (printf, 2, 0)));
   __dead void     _errc(int, int, const char *, ...)
                           __attribute__((__format__ (printf, 3, 4)));
   __dead void     _verrc(int, int, const char *, __va_list)
                           __attribute__((__format__ (printf, 3, 0)));
 __dead void     _errx(int, const char *, ...)  __dead void     _errx(int, const char *, ...)
                         __attribute__((__format__ (printf, 2, 3)));                          __attribute__((__format__ (printf, 2, 3)));
 __dead void     _verrx(int, const char *, __va_list)  __dead void     _verrx(int, const char *, __va_list)
Line 72 
Line 84 
                         __attribute__((__format__ (printf, 1, 2)));                          __attribute__((__format__ (printf, 1, 2)));
 void            _vwarn(const char *, __va_list)  void            _vwarn(const char *, __va_list)
                         __attribute__((__format__ (printf, 1, 0)));                          __attribute__((__format__ (printf, 1, 0)));
   void            _warnc(int, const char *, ...)
                           __attribute__((__format__ (printf, 2, 3)));
   void            _vwarnc(int, const char *, __va_list)
                           __attribute__((__format__ (printf, 2, 0)));
 void            _warnx(const char *, ...)  void            _warnx(const char *, ...)
                         __attribute__((__format__ (printf, 1, 2)));                          __attribute__((__format__ (printf, 1, 2)));
 void            _vwarnx(const char *, __va_list)  void            _vwarnx(const char *, __va_list)

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12