summaryrefslogtreecommitdiff
path: root/lib/libc/string/strcmp.c
AgeCommit message (Collapse)Author
2005-12-20Use reach-over sources from common/lib/libcchristos
2003-08-07Move UCB-licensed code from 4-clause to 3-clause licence.agc
Patches provided by Joel Baker in PR 22280, verified by myself.
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
1998-03-26when deciding whether to use standard system include files or libkern.h,cgd
check _STANDALONE as well as _KERNEL. _KERNEL is incorrect for use when building boot blocks, and it looks like the rest of the code is already using _STANDALONE for this purpose.
1998-02-03remove obsolete register declarationsperry
1998-01-30update to lite-2perry
1997-07-13Fix RCSID'schristos
Use "extern.h" where appropriate.
1996-10-24pull up from libkern:cgd
>when casting const pointers, preserve const qualifiers. (-Wcast-qual)
1996-04-18don't include user-land headers compiling for libkern. (sync with libkern.)cgd
1995-06-15don't include <sys/cdefs.h>, it's a 'private' headerjtc
1993-08-26Declare rcsid strings so they are stored in text segment.jtc
1993-08-01Add RCS identifiers.mycroft
1993-03-21initial import of 386bsd-0.1 sourcescgd