aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/ranlib
Commit message (Collapse)AuthorAgeFilesLines
* ANSIfy functions, and move extern declarations into a shared headerMark Murray2002-04-285-42/+87
| | | | | | | where ${DEITY} intended them to be. Notes: svn path=/head/; revision=95630
* Use `The .Nm utility'Philippe Charnier2002-04-201-2/+3
| | | | Notes: svn path=/head/; revision=95124
* remove __PWarner Losh2002-03-224-13/+13
| | | | Notes: svn path=/head/; revision=92921
* mdoc(7) police: Use the new .In macro for #include statements.Ruslan Ermilov2001-10-011-1/+1
| | | | Notes: svn path=/head/; revision=84306
* Expand emalloc in-place, and remove the `rname' basename() implimenation.David E. O'Brien2001-07-242-24/+6
| | | | Notes: svn path=/head/; revision=80287
* MAN[1-9] -> MAN.Ruslan Ermilov2001-03-271-2/+1
| | | | Notes: svn path=/head/; revision=74848
* mdoc(7) police: use the default ``file ...'' feature of the .Ar macro.Ruslan Ermilov2001-02-132-3/+5
| | | | Notes: svn path=/head/; revision=72432
* Use Fx macro wherever possible.Ruslan Ermilov2000-11-141-1/+3
| | | | Notes: svn path=/head/; revision=68716
* getopt and friends are declared in <unistd.h>Warner Losh2000-09-041-1/+0
| | | | | | | getopt returns -1 not EOF. Notes: svn path=/head/; revision=65428
* $Id$ -> $FreeBSD$Peter Wemm1999-08-288-8/+8
| | | | Notes: svn path=/head/; revision=50477
* Add $Id$, to make it simpler for members of the translation teams toNik Clayton1999-07-121-0/+1
| | | | | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde Notes: svn path=/head/; revision=48792
* Don't build or install ${MAN1}. It's just a copy of ${MAN1aout} andBruce Evans1998-10-101-3/+3
| | | | | | | | | | installing it clobbers the elf ${MAN1}. The MAN1 -> MAN1aout changes actually work now. Fixed order of MAN* and BINDIR. Notes: svn path=/head/; revision=40176
* Install the legacy man file in section 1aout.John Birrell1998-09-071-0/+1
| | | | Notes: svn path=/head/; revision=38899
* Fixed printf format errors.Bruce Evans1998-07-061-2/+2
| | | | Notes: svn path=/head/; revision=37453
* ELF preparation step 1:Søren Schmidt1998-05-251-0/+1
| | | | | | | | | | | | | | | | | | Move our old a.out utils to /usr/libexec/aout. Enable binutils and put the utils in /usr/libexec/elf Enable objformat, a little helper program that calls the right utils based on /etc/objformat and $OBJFORMAT. This will enable the ELF generating tools. Remember that this is only step one, the system is still compiled and run in a.out format ONLY. Problem left to solve: The BSD manpages wins over the GNU equivalents as the are installed last. We need to distinguish between the manpages somehow... Notes: svn path=/head/; revision=36374
* Use err(3). Use #include "" instead of <> for local headers.Philippe Charnier1997-08-047-24/+40
| | | | Notes: svn path=/head/; revision=27889
* kill the undeadPeter Wemm1997-07-131-70/+0
| | | | Notes: svn path=/head/; revision=27369
* This commit was generated by cvs2svn to compensate for changes in r27241,Bruce Evans1997-07-061-0/+70
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=27242
| * Finish importing Lite2's src/usr.bin, except for ex, diff, grep, mail,Bruce Evans1997-07-061-0/+70
| | | | | | | | pascal and vmstat.sparc. All changed files on the vendor branch should already have been imported. Notes: svn path=/vendor/CSRG/dist/; revision=27241
* compare return value from getopt against -1 rather than EOF, per the finalWarner Losh1997-03-291-1/+1
| | | | | | | posix standard on the topic. Notes: svn path=/head/; revision=24360
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-222-2/+2
| | | | Notes: svn path=/head/; revision=23012
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-142-2/+2
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* delete doubled words, e.g.: "the the" -> "the"Wolfram Schneider1996-10-052-2/+4
| | | | Notes: svn path=/head/; revision=18718
* General -Wall warning cleanup, part I.Jordan K. Hubbard1996-07-124-6/+33
| | | | | | | Submitted-By: Kent Vander Velden <graphix@iastate.edu> Notes: svn path=/head/; revision=17142
* Phkmalloc strikes again.Poul-Henning Kamp1996-03-071-1/+1
| | | | | | | Found by: asami Notes: svn path=/head/; revision=14406
* This commit was generated by cvs2svn to compensate for changes in r13122,Peter Wemm1995-12-301-70/+0
| | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=13123
* Fix ranlib to work with odd-length extended names.Andrey A. Chernov1995-11-011-1/+1
| | | | | | | Submitted by: Jim Leppek <jleppek@harris.com> Notes: svn path=/head/; revision=11996
* Don't claim that `ranlib -t' is useful.Bruce Evans1995-10-092-2/+4
| | | | | | | | | | | Our ld is derived from gnu ld which doesn't check the timestamp on __.SYMDEF. gnu ld is designed to work with gnu ar which doesn't even have a ranlib option (gnu ar updates __.SYMDEF automatically if __.SYMDEF already exists, so gnu ld expects __.SYMDEF to be up to date if it exists). Notes: svn path=/head/; revision=11346
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-1/+1
| | | | Notes: svn path=/head/; revision=8874
* Fixed two bugs: some malloced space wasn't freed after it was no longerDavid Greenman1995-01-092-2/+8
| | | | | | | | | | needed and the file wasn't closed when the -t option was used. Originally by thomas@mathematik.uni-Bremen.de, but were incomplete. Submitted by: thomas@mathematik.uni-Bremen.de and myself Notes: svn path=/head/; revision=5448
* More merry makefile munging for man page compatability.Garrett Wollman1994-08-052-10/+72
| | | | Notes: svn path=/head/; revision=1866
* Cleanup so that make install can run, many install: maninstall changedRodney W. Grimes1994-05-301-5/+7
| | | | | | | to just install:, sperious targets and CLEANFILES removed. Notes: svn path=/head/; revision=1637
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-279-0/+856
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590