summaryrefslogtreecommitdiffstats
path: root/usr.bin/yacc (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add some references, most of these were removed when we stopped buildingjsg2021-03-081-2/+11
* remove ancient malloc ? realloc dance. always use realloc.deraadt2021-02-031-5/+3
* rename filenames ending in a perioddaniel2020-12-194-5/+5
* Switch use of '\0' to NULLtb2020-09-031-2/+2
* annotate I/O errors with the corresponding messageespie2020-05-241-7/+8
* done() is no longer neededespie2020-05-243-37/+28
* those tempfiles no longer have namesespie2020-05-231-5/+2
* use rewind on tempfiles, so that we don't need to name themespie2020-05-234-90/+23
* extract the identical code that creates temp files into its own functionespie2020-05-221-12/+16
* separate cleanup from exit/signal logicespie2020-05-211-9/+11
* test FILE* against NULL and not 0espie2020-05-211-6/+6
* fix a variety of warnings. from Brian Callahantedu2017-05-256-103/+103
* Fix bad indentation. One already existed in 1.20, one introduced in 1.21;otto2016-09-211-4/+4
* it should not be necessary for yacc to use TMPDIR, /tmp is good enough.tedu2016-07-272-13/+5
* merge three obviously redundant adjacent if statementsmmcc2016-03-221-4/+3
* Declare yyparse() so the generated code is safe withguenther2015-12-311-1/+2
* Back out of 1.36 and 1.37, which made simplifications to allocationmmcc2015-12-301-9/+17
* put back casts for realloc because c++ needs them. reported by naddytedu2015-12-301-3/+3
* realloc and free's behavior when passed NULL is defined by C89, so wemmcc2015-12-281-17/+9
* Remove NULL-checks before free().mmcc2015-12-113-15/+9
* fairly obvious pledges.deraadt2015-10-101-1/+4
* The .Nd macro is intended to provide "a one line description", so avoidschwarze2015-09-091-12/+6
* Rework the number handling to avoid an integer overflow/crashjsg2014-12-051-7/+9
* Remove dead stores found by llvm checker and mark functions thatmillert2014-12-023-31/+28
* Fix lowzero running out of bounds in pack_vector(). Problem seen byotto2014-12-021-2/+2
* Reduce instances of `` '' in manuals.bentley2014-11-151-4/+5
* use reallocarray(). Leave the malloc/realloc cases in the skeletonderaadt2014-10-092-21/+19
* TMPDIR is an extension;jmc2014-06-041-3/+5
* remove unused variablechl2014-05-171-2/+2
* lint is dead (long live the lint!), so stop using it as a cpp conditionalguenther2014-03-161-3/+3
* collapse variable declarationstedu2014-03-136-179/+77
* last bits of indentation and styletedu2014-03-132-599/+527
* indentation styletedu2014-03-133-361/+329
* indent, add a touch of styletedu2014-03-132-1713/+1677
* reindenttedu2014-03-083-586/+538
* reindenttedu2014-03-081-178/+158
* a few other tweaks it's easier to see in the light of daytedu2014-03-072-62/+56
* drag this code into modern style. ok zhuktedu2014-03-072-1302/+1211
* drop support for pre-standard C, it's time to move on. ok deraadttedu2014-02-212-90/+18
* clean up macro usage in the HISTORY section;schwarze2014-02-141-9/+21
* bit more info for the toplas article;jmc2014-01-281-3/+6
* Obvious .Xr fixes, found while testing mandocdb(8).schwarze2014-01-201-9/+7
* Callers of get_state() and sole_reduction() always store the resultmillert2014-01-132-7/+8
* Use strtoul() to do octal and hex character conversion instead ofmillert2014-01-102-46/+12
* revert previous; height is never changed, but top is changed.sthen2014-01-101-3/+5
* Remove useless variable "height" in function traverse(). It ismillert2014-01-091-5/+3
* We still need to cast the resulting pointer in NEW and NEW2 as itmillert2014-01-081-3/+3
* Add casts to unsigned char for ctype functions and other placesmillert2014-01-083-56/+56
* Use calloc() instead of malloc() + memset. Based on a diff frommillert2014-01-082-9/+4
* Make allocate() take size_t and return void *. This lets us dropmillert2014-01-083-20/+18