[BACK]Return to scan.l CVS log [TXT][DIR] Up to [local] / src / usr.bin / bc

Diff for /src/usr.bin/bc/scan.l between version 1.17 and 1.18

version 1.17, 2005/03/28 17:43:28 version 1.18, 2005/04/13 06:36:03
Line 25 
Line 25 
 #include <signal.h>  #include <signal.h>
 #include <stdbool.h>  #include <stdbool.h>
 #include <string.h>  #include <string.h>
   #include <unistd.h>
   
 #include "extern.h"  #include "extern.h"
 #include "pathnames.h"  #include "pathnames.h"
Line 41 
Line 42 
 static void     add_str(const char *);  static void     add_str(const char *);
   
 %}  %}
   
   %option always-interactive
   
 DIGIT           [0-9A-F]  DIGIT           [0-9A-F]
 ALPHA           [a-z_]  ALPHA           [a-z_]

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18