Skip to content

Commit 7c85d72

Browse files
[strtox] minor size optimization
1 parent 485c958 commit 7c85d72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libc/strtox.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ STRTOX_TYPE STRTOX_NAME(const char *nptr, char **endptr, int base)
104104
unsigned STRTOX_TYPE acc;
105105
unsigned STRTOX_TYPE cutoff;
106106
const char *s;
107+
unsigned char cutlim;
108+
unsigned char c;
107109
bool neg;
108110
char any;
109-
unsigned char cutlim;
110-
int c;
111111

112112
if (base < 0 || base > 36)
113113
{

0 commit comments

Comments
 (0)