Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Consistently use FBSDID | obrien | 2002-06-30 | 1 | -3/+3 |
| | |||||
* | Modernize my email address | phk | 2002-03-25 | 1 | -1/+1 |
| | |||||
* | Remove leaf node WARNS?=2 (that mainly I added). This should | markm | 2002-02-08 | 1 | -1/+0 |
| | | | | help the GCC3 transition and CURRENT in general. | ||||
* | Spell "FreeBSD" with "F" and "BSD" in uppercase. | ru | 2001-08-13 | 1 | -1/+1 |
| | |||||
* | Remove whitespace at EOL. | dd | 2001-07-15 | 1 | -3/+3 |
| | |||||
* | Set WARNS=2 on programs that compile cleanly with it; add $FreeBSD$ | dd | 2001-06-30 | 1 | -0/+1 |
| | | | | | | where necessary. Submitted by: Mike Barcroft <mike@q9media.com> | ||||
* | MAN[1-9] -> MAN. | ru | 2001-03-27 | 1 | -1/+0 |
| | |||||
* | mdoc(7) police: use certified section headers wherever possible. | ru | 2000-11-17 | 1 | -1/+1 |
| | |||||
* | Spelling (embedd to embed) fix and change a comma to a semicolon. | dannyboy | 2000-07-11 | 1 | -2/+2 |
| | |||||
* | $Id$ -> $FreeBSD$ | peter | 1999-08-28 | 3 | -3/+3 |
| | |||||
* | Remove unused variable. | billf | 1999-07-02 | 1 | -2/+1 |
| | | | | Approved By: phk | ||||
* | Nm does not always need an argument. | charnier | 1997-07-02 | 1 | -6/+4 |
| | |||||
* | Fix a minor nit in the .Dd macro invocation so that | steve | 1997-06-23 | 1 | -2/+2 |
| | | | | the revision date is displayed correctly. | ||||
* | Revert $FreeBSD$ to $Id$ | peter | 1997-02-22 | 3 | -3/+3 |
| | |||||
* | Make the long-awaited change from $Id$ to $FreeBSD$ | jkh | 1997-01-14 | 3 | -3/+3 |
| | | | | | | | | 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. | ||||
* | This is a small little program used to execute a bad practice a clean way :-) | phk | 1995-01-29 | 3 | -0/+100 |
It will read a file on stdin and write it as decimal integers on stdout, this is useful for embedding files in c-sources. There are a few places where this is needed, and this is a better way than the current practice of hand-editing the sources. The command: date | file2c 'const char date[] = {' ',0};' will produce: const char date[] = { 83,97,116,32,74,97,110,32,50,56,32,49,54,58,52,55,58,51,51,32,80,83,84, 32,49,57,57,53,10 ,0}; The manual page is 2 lines longer than the source :-) |