rewrite the device subsystem interfaces (#48)
[lunaix-os.git] / lunaix-os / libs / klibc / string / strchr.c
index 2d80c71a00a0e8b082ed3ff1752e3117b583c009..353592d9b9e0cf2bfa9c608dd94b0c502f872b8c 100644 (file)
@@ -1,7 +1,7 @@
 #include <klibc/string.h>
 #include <lunaix/types.h>
 
-const char*
+const char* _weak
 strchr(const char* str, int character)
 {
     char c = (char)character;