From: Andreas Schwab Date: Sat, 4 Jun 2016 07:16:12 +0000 (+0200) Subject: Use __typeof instead of typeof X-Git-Tag: glibc-2.24~164 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6b4a158ef4af898f528243a54ad11807b5db2d79;p=thirdparty%2Fglibc.git Use __typeof instead of typeof --- diff --git a/ChangeLog b/ChangeLog index fac360e464b..adc53d15151 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2016-06-04 Andreas Schwab + + * include/wchar.h (__wmemset): Use __typeof. + 2016-06-03 Carlos O'Donell * include/wchar.h (__wmemset): Declare function without typeof. diff --git a/include/wchar.h b/include/wchar.h index 96b0438c4f1..6272130e244 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -102,7 +102,7 @@ extern int __wcscoll (const wchar_t *__s1, const wchar_t *__s2) __THROW; libc_hidden_proto (__wcscoll) libc_hidden_proto (wcspbrk) -extern wchar_t *__wmemset (wchar_t *__s, wchar_t __c, size_t __n) __THROW; +extern __typeof (wmemset) __wmemset; extern wchar_t *__wmemchr (const wchar_t *__s, wchar_t __c, size_t __n) __THROW __attribute_pure__; libc_hidden_proto (wmemchr)