summaryrefslogtreecommitdiff
path: root/lib/libusb/parse.c
AgeCommit message (Collapse)Author
1999-10-13> #include <sys/time.h> to make it compile againdrochner
1999-09-20back out the #ifdef _DIAGNOSTIC argument checks; too many people complained.lukem
_DIAGASSERT() is still retained.
1999-09-16* use _DIAGASSERT() to check pointer arguments against NULL and filelukem
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-07-02More trailing white space.simonb
1999-05-12Update the man page and rename one functions.augustss
1999-05-11Change copyright. I'll keep the copyright of these under more relaxedaugustss
terms than the usual TNF copyright since I'd like this API to be used by e.g. Linux (and they object to the advertising clause).
1999-05-11Make USB HID processing into a library.augustss