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

Diff for /src/usr.bin/sed/compile.c between version 1.10 and 1.11

version 1.10, 2001/11/19 19:02:16 version 1.11, 2002/02/16 21:27:52
Line 66 
Line 66 
         int     lh_ref;          int     lh_ref;
 } *labels[LHSZ];  } *labels[LHSZ];
   
 static char      *compile_addr __P((char *, struct s_addr *));  static char      *compile_addr(char *, struct s_addr *);
 static char      *compile_ccl __P((char **, char *));  static char      *compile_ccl(char **, char *);
 static char      *compile_delimited __P((char *, char *));  static char      *compile_delimited(char *, char *);
 static char      *compile_flags __P((char *, struct s_subst *));  static char      *compile_flags(char *, struct s_subst *);
 static char      *compile_re __P((char *, regex_t **));  static char      *compile_re(char *, regex_t **);
 static char      *compile_subst __P((char *, struct s_subst *));  static char      *compile_subst(char *, struct s_subst *);
 static char      *compile_text __P((void));  static char      *compile_text(void);
 static char      *compile_tr __P((char *, char **));  static char      *compile_tr(char *, char **);
 static struct s_command  static struct s_command
                 **compile_stream __P((struct s_command **));                  **compile_stream(struct s_command **);
 static char      *duptoeol __P((char *, char *));  static char      *duptoeol(char *, char *);
 static void       enterlabel __P((struct s_command *));  static void       enterlabel(struct s_command *);
 static struct s_command  static struct s_command
                  *findlabel __P((char *));                   *findlabel(char *);
 static void       fixuplabel __P((struct s_command *, struct s_command *));  static void       fixuplabel(struct s_command *, struct s_command *);
 static void       uselabel __P((void));  static void       uselabel(void);
   
 /*  /*
  * Command specification.  This is used to drive the command parser.   * Command specification.  This is used to drive the command parser.

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11