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

Diff for /src/usr.bin/make/parse.c between version 1.14 and 1.15

version 1.14, 1997/04/28 01:52:40 version 1.15, 1997/07/25 21:05:35
Line 89 
Line 89 
  *      Parse_MainName              Returns a Lst of the main target to create.   *      Parse_MainName              Returns a Lst of the main target to create.
  */   */
   
 #if __STDC__  #ifdef __STDC__
 #include <stdarg.h>  #include <stdarg.h>
 #else  #else
 #include <varargs.h>  #include <varargs.h>
Line 310 
Line 310 
  */   */
 /* VARARGS */  /* VARARGS */
 void  void
 #if __STDC__  #ifdef __STDC__
 Parse_Error(int type, char *fmt, ...)  Parse_Error(int type, char *fmt, ...)
 #else  #else
 Parse_Error(va_alist)  Parse_Error(va_alist)
Line 318 
Line 318 
 #endif  #endif
 {  {
         va_list ap;          va_list ap;
 #if __STDC__  #ifdef __STDC__
         va_start(ap, fmt);          va_start(ap, fmt);
 #else  #else
         int type;               /* Error type (PARSE_WARNING, PARSE_FATAL) */          int type;               /* Error type (PARSE_WARNING, PARSE_FATAL) */

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15