aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/col
Commit message (Collapse)AuthorAgeFilesLines
* Add missing static keywords to col(1)Ed Schouten2011-11-061-23/+23
| | | | Notes: svn path=/head/; revision=227157
* Remove the advertising clause from UCB copyrighted files in usr.bin. ThisJoel Dahl2010-12-112-8/+0
| | | | | | | | | | | | is in accordance with the information provided at ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change Also add $FreeBSD$ to a few files to keep svn happy. Discussed with: imp, rwatson Notes: svn path=/head/; revision=216370
* Remove more extraneous ;s.Ed Maste2010-07-151-1/+1
| | | | Notes: svn path=/head/; revision=210088
* The variables i and tot don't need to be static.Stefan Farfeleder2006-07-181-2/+2
| | | | Notes: svn path=/head/; revision=160464
* Avoid shadowing a local scratch variable,David Malone2005-11-131-2/+2
| | | | Notes: svn path=/head/; revision=152394
* Expand *n't contractions.Ruslan Ermilov2005-02-131-1/+1
| | | | Notes: svn path=/head/; revision=141846
* Added the EXIT STATUS section where appropriate.Ruslan Ermilov2005-01-171-1/+1
| | | | Notes: svn path=/head/; revision=140368
* Add a standard DIAGNOSTICS section.Tim J. Robbins2004-08-041-1/+3
| | | | Notes: svn path=/head/; revision=133101
* Add a cross-reference to colcrt(1).Tim J. Robbins2004-07-291-0/+1
| | | | Notes: svn path=/head/; revision=132827
* Sort #include directives and remove one duplicate that crept in to theTim J. Robbins2004-07-291-2/+1
| | | | | | | previous commit. Notes: svn path=/head/; revision=132825
* Add support for multibyte characters, loosely based on Bruno Haible'sTim J. Robbins2004-07-292-18/+41
| | | | | | | work in the util-linux package. Notes: svn path=/head/; revision=132824
* Document incorrect handling of multibyte characters.Tim J. Robbins2004-07-151-1/+5
| | | | Notes: svn path=/head/; revision=132188
* Deal with double whitespace.Ruslan Ermilov2004-07-031-1/+1
| | | | Notes: svn path=/head/; revision=131507
* ANSIify function definitions.David Malone2002-09-041-14/+8
| | | | | | | | | | | | Add some constness to avoid some warnings. Remove use register keyword. Deal with missing/unneeded extern/prototypes. Some minor type changes/casts to avoid warnings. Reviewed by: md5 Notes: svn path=/head/; revision=102944
* Remove local prototypes for main().Juli Mallett2002-08-191-1/+0
| | | | Notes: svn path=/head/; revision=102084
* Sort options in Description section.Tim J. Robbins2002-06-041-5/+5
| | | | Notes: svn path=/head/; revision=97799
* Note SUSv2 conformance.Tim J. Robbins2002-06-041-0/+5
| | | | Notes: svn path=/head/; revision=97798
* Use `The .Nm utility'Philippe Charnier2002-04-191-6/+9
| | | | Notes: svn path=/head/; revision=95083
* remove __PWarner Losh2002-03-221-8/+8
| | | | Notes: svn path=/head/; revision=92920
* Remove leaf node WARNS?=2 (that mainly I added). This shouldMark Murray2002-02-081-1/+0
| | | | | | | help the GCC3 transition and CURRENT in general. Notes: svn path=/head/; revision=90415
* Style improvements recommended by Bruce as a follow up to someDavid Malone2001-12-101-5/+6
| | | | | | | | | | | of the recent WARNS commits. The idea is: 1) FreeBSD id tags should follow vendor tags. 2) Vendor tags should not be compiled (though copyrights probably should). 3) There should be no blank line between including cdefs and __FBSDIF. Notes: svn path=/head/; revision=87628
* Use __FBSDID().Mark Murray2001-12-021-6/+6
| | | | Notes: svn path=/head/; revision=87242
* Remove the misnamed `xmalloc' and replace its uses with the realloc (alongDavid E. O'Brien2001-07-241-19/+11
| | | | | | | with error checking) that it actually was. Notes: svn path=/head/; revision=80293
* Remove whitespace at EOL.Dima Dorfman2001-07-151-1/+1
| | | | Notes: svn path=/head/; revision=79755
* Add the -p flag to force unknown control sequences to be passedMike Heffner2001-06-173-7/+18
| | | | | | | | | | | through unchanged. Reviewed by: silence on -audit Obtained from: NetBSD MFC after: 3 weeks Notes: svn path=/head/; revision=78384
* Use err(3) and style(9) cleanup.Mike Heffner2001-06-171-21/+13
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=78383
* Fix a trivial warning and clamp down with WARNS=2Kris Kennaway2001-05-262-1/+3
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=77248
* Document the -h option.Dima Dorfman2001-05-112-2/+4
| | | | Notes: svn path=/head/; revision=76495
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68963
* Use errx(). .Nm fixesPhilippe Charnier2000-03-262-12/+12
| | | | Notes: svn path=/head/; revision=58602
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | 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
* Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]).Archie Cobbs1998-12-062-2/+3
| | | | Notes: svn path=/head/; revision=41568
* 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
* Merge from Lite2Peter Wemm1997-03-111-1/+5
| | | | Notes: svn path=/head/; revision=23693
* Use the .At macro where appropriate.Mike Pritchard1996-08-231-1/+2
| | | | Notes: svn path=/head/; revision=17787
* Add setlocale LC_CTYPEAndrey A. Chernov1995-10-241-0/+3
| | | | Notes: svn path=/head/; revision=11765
* Obtained from: looked at the fix in 1.1.5 and rewrote itBruce Evans1995-01-171-8/+18
| | | | | | | Fix entabbing. Notes: svn path=/head/; revision=5676
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-274-0/+713
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590