--- src/lib/libc/string/memcmp.c 2004/10/25 19:38:02 1.3 +++ src/lib/libc/string/memcmp.c 2005/09/18 16:32:34 1.4 @@ -45,9 +45,7 @@ * Compare memory regions. */ int -memcmp(s1, s2, n) - const void *s1, *s2; - size_t n; +memcmp(const void *s1, const void *s2, size_t n) { if (n != 0) { const unsigned char *p1 = s1, *p2 = s2;