Browse Source

memmove.c,strchrnul.c: use real name in libc_hidden_def

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Peter S. Mazinger 13 years ago
parent
commit
e94b851592
2 changed files with 2 additions and 2 deletions
  1. 1 1
      libc/string/memmove.c
  2. 1 1
      libc/string/strchrnul.c

+ 1 - 1
libc/string/memmove.c

@@ -34,5 +34,5 @@ Wvoid *Wmemmove(Wvoid *s1, const Wvoid *s2, size_t n)
 }
 
 #ifndef WANT_WIDE
-libc_hidden_def(Wmemmove)
+libc_hidden_def(memmove)
 #endif

+ 1 - 1
libc/string/strchrnul.c

@@ -22,6 +22,6 @@ Wchar *Wstrchrnul(register const Wchar *s, Wint c)
 	return (Wchar *) s;
 }
 # ifndef WANT_WIDE
-libc_hidden_def(Wstrchrnul)
+libc_hidden_def(strchrnul)
 # endif
 #endif