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

Diff for /src/usr.bin/m4/expr.c between version 1.11 and 1.12

version 1.11, 2000/01/11 14:00:57 version 1.12, 2002/02/16 21:27:48
Line 110 
Line 110 
 static const char *nxtch;                      /* Parser scan pointer */  static const char *nxtch;                      /* Parser scan pointer */
 static const char *where;  static const char *where;
   
 static int query __P((void));  static int query(void);
 static int lor __P((void));  static int lor(void);
 static int land __P((void));  static int land(void);
 static int not __P((void));  static int not(void);
 static int eqrel __P((void));  static int eqrel(void);
 static int shift __P((void));  static int shift(void);
 static int primary __P((void));  static int primary(void);
 static int term __P((void));  static int term(void);
 static int exp __P((void));  static int exp(void);
 static int unary __P((void));  static int unary(void);
 static int factor __P((void));  static int factor(void);
 static int constant __P((void));  static int constant(void);
 static int num __P((void));  static int num(void);
 static int geteqrel __P((void));  static int geteqrel(void);
 static int skipws __P((void));  static int skipws(void);
 static void experr __P((const char *));  static void experr(const char *);
   
 /*  /*
  * For longjmp   * For longjmp

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