[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.15 and 1.16

version 1.15, 2001/10/13 20:18:48 version 1.16, 2002/02/16 21:27:48
Line 62 
Line 62 
         struct path_entry *next;          struct path_entry *next;
 } *first, *last;  } *first, *last;
   
 static struct path_entry *new_path_entry __P((const char *));  static struct path_entry *new_path_entry(const char *);
 static void ensure_m4path __P((void));  static void ensure_m4path(void);
 static struct input_file *dopath __P((struct input_file *, const char *));  static struct input_file *dopath(struct input_file *, const char *);
   
 static struct path_entry *  static struct path_entry *
 new_path_entry(dirname)  new_path_entry(dirname)
Line 197 
Line 197 
 static size_t bufsize = 0;  static size_t bufsize = 0;
 static size_t current = 0;  static size_t current = 0;
   
 static void addchars __P((const char *, size_t));  static void addchars(const char *, size_t);
 static void addchar __P((char));  static void addchar(char);
 static char *twiddle __P((const char *));  static char *twiddle(const char *);
 static char *getstring __P((void));  static char *getstring(void);
 static void exit_regerror __P((int, regex_t *));  static void exit_regerror(int, regex_t *);
 static void do_subst __P((const char *, regex_t *, const char *, regmatch_t *));  static void do_subst(const char *, regex_t *, const char *, regmatch_t *);
 static void do_regexpindex __P((const char *, regex_t *, regmatch_t *));  static void do_regexpindex(const char *, regex_t *, regmatch_t *);
 static void do_regexp __P((const char *, regex_t *, const char *, regmatch_t *));  static void do_regexp(const char *, regex_t *, const char *, regmatch_t *);
 static void add_sub __P((int, const char *, regex_t *, regmatch_t *));  static void add_sub(int, const char *, regex_t *, regmatch_t *);
 static void add_replace __P((const char *, regex_t *, const char *, regmatch_t *));  static void add_replace(const char *, regex_t *, const char *, regmatch_t *);
 #define addconstantstring(s) addchars((s), sizeof(s)-1)  #define addconstantstring(s) addchars((s), sizeof(s)-1)
   
 static void  static void

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