aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/find/getdate.y
Commit message (Collapse)AuthorAgeFilesLines
* find(1): remove portability ifdefsEitan Adler2018-07-011-11/+0
| | | | | | | | | This code isn't designed to be particularly portable outside of FreeBSD. To be more specific it doesn't make much sense to support compiling find(1) on VMS. Notes: svn path=/head/; revision=335849
* Fix world after byacc import:Baptiste Daroussin2012-05-221-2/+0
| | | | | | | | | | | - old yacc(1) use to magicially append stdlib.h, while new one don't - new yacc(1) do declare yyparse by itself, fix redundant declaration of 'yyparse' Approved by: des (mentor) Notes: svn path=/head/; revision=235789
* Don't let find(1) depend on struct timeb.Ed Schouten2010-02-091-38/+29
| | | | | | | | | This structure is deprecated and only used by ftime(2), which is part of libcompat. The second argument of get_date() is unused, which means we can just remove it entirely. Notes: svn path=/head/; revision=203723
* Revert most part of 200420 as requested, as more review and polish isXin LI2009-12-131-0/+1
| | | | | | | needed. Notes: svn path=/head/; revision=200462
* Remove unneeded header includes from usr.bin/ except contributed code.Xin LI2009-12-111-1/+0
| | | | | | | Tested with: make universe Notes: svn path=/head/; revision=200420
* Fixes for gcc4.x.Ollivier Robert2005-08-251-0/+1
| | | | | | | | Submitted by: Divacky Roman <xdivac02@stud.fit.vutbr.cz> PR: bin/84991 Notes: svn path=/head/; revision=149453
* Fix all WARNS. Checked with "make WARNS=9". Remove unused file.Mark Murray2003-06-141-60/+38
| | | | Notes: svn path=/head/; revision=116333
* Fix to WARNS=2 level.David E. O'Brien2002-04-151-22/+3
| | | | | | | Tested by: AXP gcc 3.1 Notes: svn path=/head/; revision=94792
* Clean up the 1/2 a** committing from Thu, 3 May 2001 11:05:39 -0700 (PDT).David E. O'Brien2002-04-141-0/+1010
Since then we have living with a GPL'ed find(1) due to grabbing getdate.y from src/contrib/cvs and its user of the GPL'ed xtime.h. I don't even want to think about how this could have affected people using our source base. Would it have been too much trouble to do then what I did now? Copied getdate.y (public domain) to usr.bin/find and change to use standard system headers. find(1) now compiles simply with out having to go to extra effort to do so. Pointed hat to: phk Build fixed on: gcc 3.1 using platforms Notes: svn path=/head/; revision=94630