NetBSD/lib/libterm
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
..
TEST
Makefile Added new interface to termcap that allows the manipulation of multiple 1999-08-15 10:59:01 +00:00
pathnames.h
shlib_version Updated library minor version and fixed small type glitch (limit is now 1999-08-16 08:34:33 +00:00
termcap.3 Added minor tweak to t_getstr, by passing a NULL area pointer the size 1999-08-17 12:13:24 +00:00
termcap.c * use _DIAGASSERT() to check pointer arguments against NULL and file 1999-09-16 11:44:54 +00:00
termcap.h Updated library minor version and fixed small type glitch (limit is now 1999-08-16 08:34:33 +00:00
tgoto.c * use _DIAGASSERT() to check pointer arguments against NULL and file 1999-09-16 11:44:54 +00:00
tputs.c * use _DIAGASSERT() to check pointer arguments against NULL and file 1999-09-16 11:44:54 +00:00