rewrite the device subsystem interfaces (#48)
[lunaix-os.git] / lunaix-os / libs / klibc / string / strcmp.c
index 072912bcea7b0683bc6b443cc8728b8fe7bc1092..482828776d963e9b38de3dc31db8bfb7a3b3334e 100644 (file)
@@ -1,7 +1,7 @@
 #include <klibc/string.h>
 #include <lunaix/compiler.h>
 
-int weak
+int _weak
 streq(const char* a, const char* b)
 {
     while (*a == *b) {