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

Diff for /src/usr.bin/m4/gnum4.c between version 1.2 and 1.3

version 1.2, 1999/09/14 08:35:16 version 1.3, 1999/11/17 15:34:13
Line 52 
Line 52 
         struct path_entry *next;          struct path_entry *next;
 } *first, *last;  } *first, *last;
   
   static struct path_entry *new_path_entry __P((const char *));
   static void ensure_m4path __P((void));
   static FILE *dopath __P((const char *));
   
 static struct path_entry *  static struct path_entry *
 new_path_entry(dirname)  new_path_entry(dirname)
         char *dirname;          const char *dirname;
 {  {
         struct path_entry *n;          struct path_entry *n;
   
Line 110 
Line 114 
   
 static  static
 FILE *  FILE *
 dopath(const char *filename)  dopath(filename)
           const char *filename;
 {  {
         char path[MAXPATHLEN];          char path[MAXPATHLEN];
         struct path_entry *pe;          struct path_entry *pe;

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