summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
...
* Add STANDARDS, ENVIRONMENT, and TABLES sections.obrien2002-04-041-11/+39
| | | | Obtained from: OpenBSD
* Minor word smithing.obrien2002-04-041-1/+1
|
* Follow suit with OpenBSD and NetBSD and tell the program name in diagnostics.obrien2002-04-041-6/+6
|
* Follow suit with OpenBSD and NetBSD and tell the program name in diagnostics.obrien2002-04-041-53/+59
|
* For -n use decimal point from localeache2002-04-041-1/+5
|
* Remove __Pache2002-04-047-52/+49
|
* Implement collating sortache2002-04-041-9/+29
|
* Fix to handle REC_D > 127 and fold case sorting of high lettersache2002-04-031-33/+132
| | | | (linear sorting still assumed, no collating support yet).
* There is breakage in parsedate, so revert to get_date until this can bemarkm2002-04-023-3/+8
| | | | | | resolved. Reported by: paul
* Fix find -exec with no command specified (i.e.: find . -exec ';')jmallett2002-04-021-0/+3
| | | | | | | PR: bin/36521 Submitted by: Simon 'corecode' Schubert <corecode@corecode.ath.cx> Reviewed by: mike MFC after: 3 days
* Connect ktrdump to the build. <cringe>.jake2002-04-021-0/+1
|
* Add a man page.jake2002-04-022-1/+83
| | | | Submitted by: davidc
* 1. Add missing include of stdint.h.jake2002-04-021-2/+3
| | | | | | 2. Fix reversed arguments to strcpy. Noticed by: davidc (2)
* Add myself.nork2002-04-021-0/+1
| | | | Reviewed by: knu (mentor)
* Fix SCM IDs.obrien2002-04-017-18/+14
|
* Allow to compile a YACC produced file with GCC 3.1 (which has differentobrien2002-04-011-0/+1
| | | | header searching rules for generated files with #line).
* Run find.1 through ispell.keramida2002-04-011-1/+1
| | | | | | PR: docs/36601 Submitted by: Joshua Goodall <joshua@roughtrade.net> MFC after: 3 days
* 1) Use FBSDID for vendor string.dwmalone2002-04-011-4/+6
| | | | | 2) Change an int for a size_t, as that's what it is mainly used for. 3) Add some braces to keep gcc happy.
* Don't use gcc specific flags.dwmalone2002-04-011-1/+0
|
* 1) Clean up vendor and ID strings.dwmalone2002-04-013-12/+29
| | | | | | | 2) include stdlib.h for atoi. 3) staticise and constify. 4) add some missing prototypes. 5) add some parens to keep gcc happy.
* Const the code.dwmalone2002-04-011-1/+3
|
* ktrdump is a utility to dump the ktr trace buffer from userland. It canjake2002-04-012-0/+243
| | | | also be run on a core dump.
* Uncomment now implemented part of -d descriptionache2002-03-311-2/+2
|
* Remove \n from __COPYRIGHT to shut assembler warningache2002-03-311-1/+1
|
* Add P1003.1-2001 -f and -p options.jmallett2002-03-312-4/+52
| | | | | | | PR: standards/36243 Submitted by: Tim J. Robbins <tim@robbins.dropbear.id.au> Reviewed by: mike MFC after: 2 weeks
* Don't use gcc specific flags.dwmalone2002-03-301-1/+0
|
* 1) Staticise.dwmalone2002-03-301-13/+13
| | | | | 2) Remove registers. 3) Change some ints to size_t which are used with fread/fwrite.
* 1) Const enough things to avoid warnings.dwmalone2002-03-306-30/+31
| | | | | | | | 2) Cast ifdef_level to a size_t before comparing it to a ratio of size_ts. Ifdef_level should always be positive. 3) Complete prototype for chfont. 4) Cast some ptrdiff_ts to ints before using as a field width. 5) Avoid shadowing a local variable p with another local variable p.
* 1) Add missing prototypes for fmt_perm and cvt_time.dwmalone2002-03-301-6/+8
| | | | | | | 2) Move a break outside a #if block to keep gcc3 from seeing a "default:" at the end of a block. 3) Fix some format warnings. Some remain which can be fixed more easily when we have a full C99 printf.
* Use the method described in the strtol man page to check if it parseddwmalone2002-03-301-1/+1
| | | | the entire string. This avoids signed/unsigned comparison.
* Fix vendor ID.dwmalone2002-03-301-2/+4
| | | | | | | | Make usage message match the man page. (Missing -o, -h doesn't depend on -d). PR: 36470 Submitted by: Gary W. Swearingen <swear@blarg.net> MFC after: 1 week
* Clean up vendor ID and FBSDID.dwmalone2002-03-301-5/+7
| | | | We now seem to include <arpa/inet.h> to get ntoh*.
* Fix constness warnings.dwmalone2002-03-302-13/+14
| | | | | | Remove register keyword. Don't initialise "badtype" in declaration - it was initialised below anyway. Remove prototype for strcpy.
* Don't use gcc specific flags.dwmalone2002-03-301-1/+0
|
* Change a "/*" within a comment to a "**".dwmalone2002-03-301-1/+2
| | | | Add a missing include spotted by gcc30.
* Mark some parameters as unused.dwmalone2002-03-303-14/+24
| | | | | Make more code depend on '#ifndef NO_X' so we don't get unused warnings when compiling without X.
* Minor post warns stuff.dwmalone2002-03-303-19/+14
| | | | | | | | | 1) Fix up vendor IDs for files I'm touching and put FBSDID in the right place. 2) Cast return value of snprintf to size_t rather than casting sizeof() to an int, 'cos we know snprintf returns a non-genative number. 3) Avoid 'char *blank = "";' by just strduping. This could be bad sometimes, but all these variables usually point at malloced memory so this makes them always point at malloced memory.
* Fix a few typos.keramida2002-03-301-2/+2
| | | | | | | | | as a user ID -> has a user ID command constitutes of -> command consists of PR: misc/36523 Submitted by: Chris Pepper <pepper@mail.rockefeller.edu> MFC after: 3 days
* Const what I could on a first pass.obrien2002-03-301-7/+9
|
* Install libusbhid, and use it instead of libusb.joe2002-03-281-2/+2
| | | | MFC after: 6 days
* Use libusbhid.h instead of libusb.h.joe2002-03-281-1/+1
|
* Back out rev. 1.6 (NOLIB bootstrap helper) OBE'd by Makefile.inc1,v 1.96.ru2002-03-281-2/+0
| | | | | PR: bin/36417 Submitted by: Eugene Grosbein <eugen@www.svzserv.kemerovo.su>
* Utility to create a.out [kernels] from an ELF one.obrien2002-03-281-0/+156
| | | | | | | This is needed on sparc64 (and maybe all OpenFirmware based machines) as most [all?] OpenBoot PROM's require either an a.out or FCode boot image. Submitted by: jake
* Use a slightly less obscure title than "file status".wollman2002-03-271-2/+2
|
* Remove double SINGL_FLD and SEP_FLAG initializationache2002-03-271-1/+0
|
* Restored the part of 1.45 that was clobbered in rev.1.46:bde2002-03-271-0/+1
| | | | | #include <sys/time.h> instead of depending on namespace pollution in <sys/stat.h> for the declaration of struct timeval.
* Add myself.charnier2002-03-261-0/+1
|
* Add FBSDID. Spelling. Remove unused includes. Check more malloc failures.charnier2002-03-263-10/+12
|
* Add FBSDID. Do not \n terminate err() strings. Spelling.charnier2002-03-261-5/+6
|
* Introduce flags enumeration with standardcharnier2002-03-261-4/+5
| | | | ``The following options are available''. Put filename under .Pa.
OpenPOWER on IntegriCloud