mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-12 22:30:12 +00:00
d8d1017e5e
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]
15 lines
291 B
C
15 lines
291 B
C
#include <wchar.h>
|
|
|
|
#ifndef NOT_IN_libc
|
|
# 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"
|