]> git.saurik.com Git - apple/xnu.git/blobdiff - libsyscall/wrappers/string/strcmp.c
xnu-4903.221.2.tar.gz
[apple/xnu.git] / libsyscall / wrappers / string / strcmp.c
index cffe0788323b0c2e5ef329dd11e6b96fe9e8f868..cfe403516e85655a54737c6bd0358d99f10b49f9 100644 (file)
@@ -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')