NetBSD/lib/libusb
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
..
Makefile now, make the previous work. 1999-07-23 09:44:38 +00:00
data.c * use _DIAGASSERT() to check pointer arguments against NULL and file 1999-09-16 11:44:54 +00:00
descr.c * use _DIAGASSERT() to check pointer arguments against NULL and file 1999-09-16 11:44:54 +00:00
parse.c * use _DIAGASSERT() to check pointer arguments against NULL and file 1999-09-16 11:44:54 +00:00
shlib_version
usage.c More trailing white space. 1999-07-02 15:46:05 +00:00
usb.3 Fix some typos. 1999-07-24 01:42:49 +00:00
usb.h More trailing white space. 1999-07-02 15:46:05 +00:00
usb_hid_usages More trailing white space. 1999-07-02 15:46:05 +00:00
usbvar.h Change copyright. I'll keep the copyright of these under more relaxed 1999-05-11 21:15:46 +00:00