git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Decoupling Architectural-specific Code (#35)
[lunaix-os.git]
/
lunaix-os
/
libs
/
klibc
/
string
/
strcmp.c
diff --git
a/lunaix-os/libs/klibc/string/strcmp.c
b/lunaix-os/libs/klibc/string/strcmp.c
index 736bb910b741addb016d891ff4ec79a28397fae6..88759ceb8ad78e5f6a5c2320978273d36ca7b50e 100644
(file)
--- a/
lunaix-os/libs/klibc/string/strcmp.c
+++ b/
lunaix-os/libs/klibc/string/strcmp.c
@@
-1,6
+1,7
@@
#include <klibc/string.h>
#include <klibc/string.h>
+#include <lunaix/compiler.h>
-int
+int
weak
streq(const char* a, const char* b)
{
while (*a == *b) {
streq(const char* a, const char* b)
{
while (*a == *b) {