Go to file
lukem b48252f365 * use _DIAGASSERT() to check pointer arguments against NULL and file
descriptors against -1 (as appropriate).
* add actual checks which to detect stuff that would trigger_DIAGASSERT(),
  and attempt to return a sane error condition.
* knf some code
* remove some `register' decls.

the first two items result in the addition of code similar to the
following in various functions:

		_DIAGASSERT(path != NULL)
	#ifdef _DIAGNOSTIC
		if (path == NULL) {
			errno = EFAULT;
			return (-1);
		}
	#endif
1999-09-16 11:44:54 +00:00
bin the PMAP_NEW option is gone as the new interface is no longer optional. 1999-09-12 01:19:23 +00:00
distrib This file is hopeless outdated & broken and would need some rework to 1999-09-15 12:35:37 +00:00
etc If machdep.booted_kernel can be found in sysctl output, feed that name into 1999-09-16 11:00:44 +00:00
games Change quiz `pres' data file to include vice-presidents, and fix some 1999-09-14 20:04:02 +00:00
gnu Correct the condition codes. 1999-09-10 12:52:56 +00:00
include if _DIAGNOSTIC is defined, define _DIAGASSERT() to call __diagassert(), 1999-09-15 23:53:26 +00:00
lib * use _DIAGASSERT() to check pointer arguments against NULL and file 1999-09-16 11:44:54 +00:00
libexec the PMAP_NEW option is gone as the new interface is no longer optional. 1999-09-12 01:19:23 +00:00
regress Oops; remember to clean the output file. 1999-08-30 17:06:33 +00:00
sbin Use full month names with .Dd, as per mdoc.samples(7). 1999-09-12 18:47:10 +00:00
share Remove getopt from the Makefile too. 1999-09-16 09:12:06 +00:00
sys Fix botched RCS IDs. 1999-09-16 05:58:18 +00:00
usr.bin Some minor cleanup of :: tests. 1999-09-16 00:54:14 +00:00
usr.sbin fix internal servers (like echo) so that they can accept AF_INET6 connections. 1999-09-15 09:59:41 +00:00
Makefile use new dependall target instead of depend then all in make build 1999-09-14 01:32:43 +00:00