mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
Fix warnings in wcschr-c.c
Fixes: In file included from ../sysdeps/i386/i686/multiarch/wcschr-c.c:8:0: ../wcsmbs/wcschr.c:26:1: warning: function declaration isn’t a prototype [-Wstrict-prototypes] ../wcsmbs/wcschr.c:37:1: warning: data definition has no type or storage class [enabled by default] ../wcsmbs/wcschr.c:37:1: warning: type defaults to ‘int’ in declaration of ‘__hidden_ver1’ [enabled by default] ../wcsmbs/wcschr.c:37:1: warning: parameter names (without types) in function declaration [enabled by default]
This commit is contained in:
parent
6c7fb1458d
commit
d8d1017e5e
@ -1,3 +1,8 @@
|
||||
2012-05-21 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* sysdeps/i386/i686/multiarch/wcschr-c.c: Redefine libc_hidden_def
|
||||
only if [SHARED]. Add prototype for __wcschr_ia32.
|
||||
|
||||
2012-05-21 Roland McGrath <roland@hack.frob.com>
|
||||
|
||||
* sysdeps/x86_64/setjmp.S [PTR_MANGLE] [__ILP32__]: Preserve high bits
|
||||
|
@ -1,8 +1,14 @@
|
||||
#include <wchar.h>
|
||||
|
||||
#ifndef NOT_IN_libc
|
||||
# undef libc_hidden_def
|
||||
# define libc_hidden_def(name) \
|
||||
__hidden_ver1 (__wcschr_ia32, __GI_wcschr, __wcschr_ia32);
|
||||
# ifdef SHARED
|
||||
# undef libc_hidden_def
|
||||
# define libc_hidden_def(name) \
|
||||
__hidden_ver1 (__wcschr_ia32, __GI_wcschr, __wcschr_ia32);
|
||||
# endif
|
||||
# define WCSCHR __wcschr_ia32
|
||||
#endif
|
||||
|
||||
extern __typeof (wcschr) __wcschr_ia32;
|
||||
|
||||
#include "wcsmbs/wcschr.c"
|
||||
|
Loading…
Reference in New Issue
Block a user