diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2016-06-04 09:16:12 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2016-06-04 09:19:09 +0200 |
commit | 6b4a158ef4af898f528243a54ad11807b5db2d79 (patch) | |
tree | 4f64c146dd2121af4c5e5795ce8357b5de50f048 /include | |
parent | cda672e7bd2e2d11bae1e4bf5d2dd4532a610ebd (diff) | |
download | glibc-6b4a158ef4af898f528243a54ad11807b5db2d79.tar glibc-6b4a158ef4af898f528243a54ad11807b5db2d79.tar.gz glibc-6b4a158ef4af898f528243a54ad11807b5db2d79.tar.bz2 glibc-6b4a158ef4af898f528243a54ad11807b5db2d79.zip |
Use __typeof instead of typeof
Diffstat (limited to 'include')
-rw-r--r-- | include/wchar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wchar.h b/include/wchar.h index 96b0438c4f..6272130e24 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) |