diff options
Diffstat (limited to 'win32/wince.c')
-rw-r--r-- | win32/wince.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/wince.c b/win32/wince.c index 8a8721951b..d34a1db321 100644 --- a/win32/wince.c +++ b/win32/wince.c @@ -417,8 +417,8 @@ tokenize(const char *str, char **dest, char ***destv) if (str) { dTHX; int slen = strlen(str); - register char *ret; - register char **retv; + char *ret; + char **retv; Newx(ret, slen+2, char); Newx(retv, (slen+3)/2, char*); |