summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-12-01 08:16:07 +0000
committerMike Frysinger <vapier@gentoo.org>2005-12-01 08:16:07 +0000
commitcbe6ea1c0b285a3bc633b0e985b24822149e8ef9 (patch)
tree80576b25b531b5cdc5e6f7ffdccda992886a4214 /libc
parent971bb0ded93529bb10cd580622b2f6fe8895ba2a (diff)
fix libc_hidden_builtin_def
Diffstat (limited to 'libc')
-rw-r--r--libc/string/mips/sysdep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/string/mips/sysdep.h b/libc/string/mips/sysdep.h
index 2c96ced0d..89674fef7 100644
--- a/libc/string/mips/sysdep.h
+++ b/libc/string/mips/sysdep.h
@@ -43,9 +43,9 @@
#endif
#ifdef libc_hidden_builtin_def
-#error WHOA!!! libc_hidden_builtin_def is defined
+#error "WHOA!!! libc_hidden_builtin_def is defined"
#else
-#define libc_hidden_builtin_def(name)
+#define libc_hidden_builtin_def(name) .global __ ## name ; __ ## name = name
#endif
#endif