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

Diff for /src/usr.bin/lex/sym.c between version 1.7 and 1.8

version 1.7, 2015/11/19 19:43:40 version 1.8, 2015/11/19 23:20:34
Line 96 
Line 96 
   
         /* create new entry */          /* create new entry */
         new_entry = (struct hash_entry *)          new_entry = (struct hash_entry *)
                 flex_alloc (sizeof (struct hash_entry));                  malloc (sizeof (struct hash_entry));
   
         if (new_entry == NULL)          if (new_entry == NULL)
                 flexfatal (_("symbol table memory allocation failed"));                  flexfatal (_("symbol table memory allocation failed"));

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8