Second Extended Filesystem (ext2) and other improvements (#33)
[lunaix-os.git] / lunaix-os / libs / klibc / string / strchr.c
index 2d80c71a00a0e8b082ed3ff1752e3117b583c009..3fdd7c37c9d39d5b3e2e7a21788a84984f22d2ff 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;