File tree 4 files changed +4
-16
lines changed
4 files changed +4
-16
lines changed Original file line number Diff line number Diff line change 31
31
#define valid (n , b ) ((n) >= 0 && (n) < (b))
32
32
33
33
intmax_t
34
- strtoimax (nptr , endptr , base )
35
- register const char * __restrict__ nptr ;
36
- char * * __restrict__ endptr ;
37
- register int base ;
34
+ strtoimax (const char * __restrict__ nptr , char * * __restrict__ endptr , int base )
38
35
{
39
36
register uintmax_t accum ; /* accumulates converted value */
40
37
register int n ; /* numeral from digit character */
Original file line number Diff line number Diff line change 31
31
#define valid (n , b ) ((n) >= 0 && (n) < (b))
32
32
33
33
uintmax_t
34
- strtoumax (nptr , endptr , base )
35
- register const char * __restrict__ nptr ;
36
- char * * __restrict__ endptr ;
37
- register int base ;
34
+ strtoumax (const char * __restrict__ nptr , char * * __restrict__ endptr , int base )
38
35
{
39
36
register uintmax_t accum ; /* accumulates converted value */
40
37
register uintmax_t next ; /* for computing next value of accum */
Original file line number Diff line number Diff line change 33
33
#define valid (n , b ) ((n) >= 0 && (n) < (b))
34
34
35
35
intmax_t
36
- wcstoimax (nptr , endptr , base )
37
- register const wchar_t * __restrict__ nptr ;
38
- wchar_t * * __restrict__ endptr ;
39
- register int base ;
36
+ wcstoimax (const wchar_t * __restrict__ nptr , wchar_t * * __restrict__ endptr , int base )
40
37
{
41
38
register uintmax_t accum ; /* accumulates converted value */
42
39
register int n ; /* numeral from digit character */
Original file line number Diff line number Diff line change 33
33
#define valid (n , b ) ((n) >= 0 && (n) < (b))
34
34
35
35
uintmax_t
36
- wcstoumax (nptr , endptr , base )
37
- register const wchar_t * __restrict__ nptr ;
38
- wchar_t * * __restrict__ endptr ;
39
- register int base ;
36
+ wcstoumax (const wchar_t * __restrict__ nptr , wchar_t * * __restrict__ endptr , int base )
40
37
{
41
38
register uintmax_t accum ; /* accumulates converted value */
42
39
register uintmax_t next ; /* for computing next value of accum */
You can’t perform that action at this time.
0 commit comments