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

Diff for /src/usr.bin/make/extern.h between version 1.24 and 1.25

version 1.24, 2000/06/23 16:18:09 version 1.25, 2000/06/23 16:20:01
Line 42 
Line 42 
  */   */
   
 /* arch.c */  /* arch.c */
 ReturnStatus Arch_ParseArchive __P((char **, Lst, GNode *));  ReturnStatus Arch_ParseArchive __P((char **, Lst, SymTable *));
 void Arch_Touch __P((GNode *));  void Arch_Touch __P((GNode *));
 void Arch_TouchLib __P((GNode *));  void Arch_TouchLib __P((GNode *));
 Boolean Arch_MTime __P((GNode *));  Boolean Arch_MTime __P((GNode *));
Line 90 
Line 90 
 void Parse_Error __P((int, char *, ...));  void Parse_Error __P((int, char *, ...));
 Boolean Parse_AnyExport __P((void));  Boolean Parse_AnyExport __P((void));
 Boolean Parse_IsVar __P((char *));  Boolean Parse_IsVar __P((char *));
 void Parse_DoVar __P((char *, GNode *));  void Parse_DoVar __P((char *, SymTable *));
 void Parse_AddIncludeDir __P((char *));  void Parse_AddIncludeDir __P((char *));
 void Parse_File __P((char *, FILE *));  void Parse_File __P((char *, FILE *));
 void Parse_Init __P((void));  void Parse_Init __P((void));
Line 142 
Line 142 
 void Targ_PrintGraph __P((int));  void Targ_PrintGraph __P((int));
   
 /* var.c */  /* var.c */
 void Var_Delete __P((char *, GNode *));  void Var_Delete __P((char *, SymTable *));
 void Var_Set __P((char *, char *, GNode *));  void Var_Set __P((char *, char *, SymTable *));
 void Varq_Set __P((int, char *, GNode *));  void Varq_Set __P((int, char *, GNode *));
 void Var_Append __P((char *, char *, GNode *));  void Var_Append __P((char *, char *, SymTable *));
 void Varq_Append __P((int, char *, GNode *));  void Varq_Append __P((int, char *, GNode *));
 Boolean Var_Exists __P((char *, GNode *));  Boolean Var_Exists __P((char *, SymTable *));
 Boolean Varq_Exists __P((int, GNode *));  Boolean Varq_Exists __P((int, GNode *));
 char *Var_Value __P((char *, GNode *));  char *Var_Value __P((char *, SymTable *));
 char *Varq_Value __P((int,  GNode *));  char *Varq_Value __P((int,  GNode *));
 char *Var_Parse __P((char *, GNode *, Boolean, size_t *, Boolean *));  char *Var_Parse __P((char *, SymTable *, Boolean, size_t *, Boolean *));
 char *Var_Subst __P((char *, GNode *, Boolean));  char *Var_Subst __P((char *, SymTable *, Boolean));
 void Var_SubstVar __P((Buffer, char *, const char *, GNode *));  void Var_SubstVar __P((Buffer, char *, const char *, SymTable *));
 char *Var_GetTail __P((char *));  char *Var_GetTail __P((char *));
 char *Var_GetHead __P((char *));  char *Var_GetHead __P((char *));
 void Var_Init __P((void));  void Var_Init __P((void));
 void Var_End __P((void));  void Var_End __P((void));
 void Var_Dump __P((GNode *));  void Var_Dump __P((SymTable *));
   void SymTable_Init __P((SymTable *));

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25