about summary refs log tree commit diff
path: root/wcsmbs/wcschrnul.c
diff options
context:
space:
mode:
Diffstat (limited to 'wcsmbs/wcschrnul.c')
-rw-r--r--wcsmbs/wcschrnul.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wcsmbs/wcschrnul.c b/wcsmbs/wcschrnul.c
index 040aa70bc9..d6b1231113 100644
--- a/wcsmbs/wcschrnul.c
+++ b/wcsmbs/wcschrnul.c
@@ -21,8 +21,8 @@
 /* Find the first occurrence of WC in WCS.  */
 wchar_t *
 __wcschrnul (wcs, wc)
-     register const wchar_t *wcs;
-     register const wchar_t wc;
+     const wchar_t *wcs;
+     const wchar_t wc;
 {
   while (*wcs != L'\0')
     if (*wcs == wc)