summaryrefslogtreecommitdiff
path: root/sbin/mount_std
Commit message (Collapse)AuthorAgeFilesLines
* MFC: gack. That's the doc fixes merged, many utilities converted overJordan K. Hubbard1998-07-171-5/+4
| | | | | | | | to err(), and a few assorted buffer overflow fixes. Also nuked the now-useless LFS stuff. Notes: svn path=/stable/2.2/; revision=37729
* MFC: EOF -> -1 for getoptWarner Losh1997-12-041-2/+2
| | | | Notes: svn path=/stable/2.2/; revision=31527
* YAMFC: various minor man page cleanupsMike Pritchard1997-01-021-6/+6
| | | | Notes: svn path=/stable/2.2/; revision=21220
* YAMFC:Mike Pritchard1996-12-226-658/+44
| | | | | | | | | | | | - Correct various man page xrefs - Fix some spelling errors - Add misssing documentation bits in some man pages - mount_std.8 now documents mount_{devfs,fdesc,kernfs,procfs} - New man pages for moused(8), devfs(5), fdesc(5), kernfs(5), procfs(5) were tagged onto the 2.2 branch. Notes: svn path=/stable/2.2/; revision=20819
* Don't use __dead or __pure in user code. They were obfuscationsBruce Evans1996-09-141-2/+2
| | | | | | | | | for gcc >= 2.5 and no-ops for gcc >= 2.6. Converted to use __dead2 or __pure2 where it wasn't already done, except in math.h where use of __pure was mostly wrong. Notes: svn path=/head/; revision=18286
* Use the .Bx macro where appropriate.Mike Pritchard1996-08-233-3/+6
| | | | Notes: svn path=/head/; revision=17797
* Use the .Fx macro where appropriate.Mike Pritchard1996-08-232-3/+3
| | | | Notes: svn path=/head/; revision=17786
* Accept mount(8)'s calling convention of passing just the filesystem typeGarrett Wollman1996-05-142-9/+23
| | | | | | | as argv[0]. Notes: svn path=/head/; revision=15774
* Get rid of the last vestiges of the old MOUNT_* constants in theGarrett Wollman1996-05-137-0/+917
mount_* programs. While we're at it, collapse the four now-identical mount programs for devfs, fdesc, kernfs, and procfs into links to a new mount_std(8) which can mount any really generic filesystem such as these when called with the appropriate argv[0]. Also, convert the mount programs to use sysexits.h. Notes: svn path=/head/; revision=15770