[BACK]Return to error.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/error.h between version 1.12 and 1.13

version 1.12, 2012/09/21 07:55:20 version 1.13, 2015/09/27 16:58:16
Line 41 
Line 41 
  *                              errors which occurred, as passed to it, and   *                              errors which occurred, as passed to it, and
  *                              exiting.   *                              exiting.
  */   */
 extern void Error(char *, ...);  extern void Error(const char *, ...)
 extern void Fatal(char *, ...);                                  __attribute__((__format__ (printf, 1, 2)));
 extern void Punt(char *, ...);  extern void Fatal(const char *, ...)
                                   __attribute__((__format__ (printf, 1, 2)));
   extern void Punt(const char *, ...)
                                   __attribute__((__format__ (printf, 1, 2)));
 extern void Finish(void);  extern void Finish(void);
   
 /*  /*
Line 53 
Line 56 
  */   */
 #define PARSE_WARNING   2  #define PARSE_WARNING   2
 #define PARSE_FATAL     1  #define PARSE_FATAL     1
 extern void Parse_Error(int, const char *, ...);  extern void Parse_Error(int, const char *, ...)
                                   __attribute__((__format__ (printf, 2, 3)));
 extern int fatal_errors;  extern int fatal_errors;
 /* Needed for fatal errors: we have to know whether we must abort other jobs  /* Needed for fatal errors: we have to know whether we must abort other jobs
  * or not */   * or not */

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