aboutsummaryrefslogtreecommitdiff
path: root/libc/stdlib/strtoul.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdlib/strtoul.c')
-rw-r--r--libc/stdlib/strtoul.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/stdlib/strtoul.c b/libc/stdlib/strtoul.c
index 754e7db..8472668 100644
--- a/libc/stdlib/strtoul.c
+++ b/libc/stdlib/strtoul.c
@@ -46,8 +46,6 @@ unsigned long int strtoul(const char *S, char **PTR,int BASE)
if ((**PTR == '0') && (*((*PTR)+1) == 'x'))
{
BASE = 16;
- (*PTR)++;
- (*PTR)++;
}
else
{