]> git.sur5r.net Git - cc65/blob - libsrc/common/strtoumax.s
New strtoimax and strtoumax standard functions as aliases for strtol/strtoul.
[cc65] / libsrc / common / strtoumax.s
1 ;
2 ; Ullrich von Bassewitz, 2009-09-17
3 ;
4 ; uintmax_t __fastcall__ strtoumax (const char* nptr, char** endptr, int base);
5 ;
6
7         .import         _strtoul
8         .export         _strtoumax = _strtoul
9