X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/d26ffc64f583ab2d29df48f13518685602bc8832..d9a64523371fa019c4575bb400cbbc3a50ac9903:/libsyscall/wrappers/string/strcmp.c diff --git a/libsyscall/wrappers/string/strcmp.c b/libsyscall/wrappers/string/strcmp.c index cffe07883..cfe403516 100644 --- a/libsyscall/wrappers/string/strcmp.c +++ b/libsyscall/wrappers/string/strcmp.c @@ -37,7 +37,7 @@ */ __attribute__((visibility("hidden"))) int -strcmp(const char *s1, const char *s2) +_libkernel_strcmp(const char *s1, const char *s2) { while (*s1 == *s2++) if (*s1++ == '\0')