K 10 svn:author V 3 bde K 8 svn:date V 27 1995-07-25T22:09:06.000000Z K 7 svn:log V 349 Change memcmp() to bcmp(). memcmp() isn't declared or implemented for the kernel, but gcc provides an inline version of it if the kernel is compiled with -O. The inline memcmp() is OK for small compares and is better than the dumb kernel bcmp() in all cases, but it has been hiding the library memcmp() which is 4 times faster for large compares. END