summaryrefslogtreecommitdiff
path: root/src/dfa.c
Commit message (Collapse)AuthorAge
* dfa.c:157:24: warning: conversion to 'size_t' from 'int' may change the sign ↵rlar2016-02-27
| | | | | | of the result [-Wsign-conversion] most certainly safe cast
* Removed more instances of PROTO, ansifying.Michael McConville2015-12-14
|
* Removed flex_free()i, corrected buf_destroy logic.Michael McConville2015-12-09
| | | | | | | As with flex_alloc(), replace with direct calls to free(). The function buf_destroy is now null safe and the logic was corrected to free() correctly.
* Remove allocation castsMichael McConville2015-12-07
|
* Use NULL rather than (type *) 0.Michael McConville2015-12-05
|
* Switch function definitions from mixed K&R to consistent ANSI C.Stefan Reinauer2015-11-19
| | | | | | | | flex was using K&R function definitions for some functions and ANSI C style in others, sometimes even in the same file. Change the code to consistently use ANSI C. Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
* fix possible uninitialized array valuesJaska Uimonen2015-08-06
|
* Removed deprecated 'register' storage class specifier.Yuri2014-07-25
| | | | clang-3.5.0 now complains about them: warning: 'register' storage class specifier is deprecated [-Wdeprecated-register]
* move flex program sources into src/ directoryWill Estes2014-02-16
The *.[chly] sources are now in the src directory. This implies a bunch of changes in Makefile.am and friends to account for the new location. The .gitignore files are now more local to places where various object files and generated source files occur.