Browse Source

fix libc_hidden_builtin_def

Mike Frysinger 19 years ago
parent
commit
cbe6ea1c0b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      libc/string/mips/sysdep.h

+ 2 - 2
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