[BACK]Return to compat_err.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/compat_err.c between version 1.3 and 1.4

version 1.3, 2015/11/07 14:22:29 version 1.4, 2015/11/26 07:42:11
Line 77  err(int eval, const char *fmt, ...)
Line 77  err(int eval, const char *fmt, ...)
 }  }
   
 void  void
   errx(int eval, const char *fmt, ...)
   {
           va_list ap;
   
           va_start(ap, fmt);
           vwarnxi(fmt, ap);
           va_end(ap);
           fputc('\n', stderr);
           exit(eval);
   }
   
   void
 warn(const char *fmt, ...)  warn(const char *fmt, ...)
 {  {
         va_list ap;          va_list ap;

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

CVSweb