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

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

version 1.12, 2014/04/22 00:33:02 version 1.13, 2015/08/31 02:53:56
Line 65 
Line 65 
 void            vwarnx(const char *, __va_list)  void            vwarnx(const char *, __va_list)
                         __attribute__((__format__ (printf, 1, 0)));                          __attribute__((__format__ (printf, 1, 0)));
   
 /*  
  * The _* versions are for use inside libc only and will go away  
  */  
 __dead void     _err(int, const char *, ...)  
                         __attribute__((__format__ (printf, 2, 3)));  
 __dead void     _verr(int, const char *, __va_list)  
                         __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 *, ...)  
                         __attribute__((__format__ (printf, 2, 3)));  
 __dead void     _verrx(int, const char *, __va_list)  
                         __attribute__((__format__ (printf, 2, 0)));  
 void            _warn(const char *, ...)  
                         __attribute__((__format__ (printf, 1, 2)));  
 void            _vwarn(const char *, __va_list)  
                         __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 *, ...)  
                         __attribute__((__format__ (printf, 1, 2)));  
 void            _vwarnx(const char *, __va_list)  
                         __attribute__((__format__ (printf, 1, 0)));  
   
 __END_DECLS  __END_DECLS
   
 #endif /* !_ERR_H_ */  #endif /* !_ERR_H_ */

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