summaryrefslogtreecommitdiff
path: root/src/filter.c
Commit message (Collapse)AuthorAge
* use type size_t in filter_tee_header() to avoid warningsrlar2016-03-01
|
* add (size_t) casts to malloc invocations to prevent warningsrlar2016-03-01
|
* Improved pipe-stdin hack behavior; resolves sf#198.Michael van Elst2016-01-08
| | | | Signed-off-by: Thomas <Klausner wiz@NetBSD.org>
* Removed flex_realloc().Michael McConville2015-12-09
| | | | | As with flex_alloc(), replace calls to flex_realloc(), which was just a wrapper around realloc().
* Removed flex_alloc; cleaned up style.Michael McConville2015-12-09
| | | | | | | | | | | The function flex_alloc() was just a wrapper around malloc(). Since this only added unclarity, and the flex_alloc() function is likely a legacy of olden times, remove it in favor of calls to malloc() directly. Style elements cleaned up: * superfluous spacing around parentheses * non-constant initialization in variable declarations * needless casts * almost all uses of assignments as subexpressions
* Remove unused variable from src/filter.c:filter_fix_linedirsMariusz PluciƄski2014-11-25
|
* NetBSD downstream patches.Christos Zoulas2014-11-11
| | | | | | | | | | | | | | | | const fixes. -Wconversion fixes for the skeleton files. param namespace protection (add _ to inline function parameters). unused variable/code removal. rename warn to lwarn to avoid conflict with <err.h>. ctype.h function argument correction. merged the error functions lerrif and lerrsf -> lerr.
* 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.