Decoupling Architectural-specific Code (#35)
[lunaix-os.git] / lunaix-os / libs / klibc / string / strcmp.c
index 736bb910b741addb016d891ff4ec79a28397fae6..88759ceb8ad78e5f6a5c2320978273d36ca7b50e 100644 (file)
@@ -1,6 +1,7 @@
 #include <klibc/string.h>
+#include <lunaix/compiler.h>
 
-int
+int weak
 streq(const char* a, const char* b)
 {
     while (*a == *b) {