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

Diff for /src/usr.bin/lex/main.c between version 1.12 and 1.13

version 1.12, 2011/06/08 20:22:02 version 1.13, 2013/10/27 18:31:24
Line 110 
Line 110 
 char *program_name = "flex";  char *program_name = "flex";
   
 #ifndef SHORT_FILE_NAMES  #ifndef SHORT_FILE_NAMES
 static char *outfile_template = "lex.%s.%s";  static const char outfile_template[] = "lex.%s.%s";
 static char *backing_name = "lex.backup";  static const char backing_name[] = "lex.backup";
 #else  #else
 static char *outfile_template = "lex%s.%s";  static const char outfile_template[] = "lex%s.%s";
 static char *backing_name = "lex.bck";  static const char backing_name[] = "lex.bck";
 #endif  #endif
   
 #ifdef THINK_C  #ifdef THINK_C

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