summaryrefslogtreecommitdiff
path: root/common/lib/libc/stdlib/strtoull.c
AgeCommit message (Collapse)Author
2013-04-16Add strtol_l and friends. Switch _citrus_bcs_strtol to use plainjoerg
strtol_l unless in tools mode. Add note to retire the BCS code on the next libc major bump.
2008-09-10Prepare use of strtoull, strtoumax and strtoimax in tools/compat byjoerg
including nbtool_config.h.
2008-08-22Properly deal with LIBC namespace issues.matt
2008-08-20Fix build breakage by adding appropriate #includes.oster
Patch from joerg@
2008-08-20Unify the implementation of strto{l,ul,ll,ull,imax,umax,q,uq} into onejoerg
version for signed and one version for unsigned data types. Add a check for supported bases and set errno (userland) or panic (kernel, libsa) otherwise. Make strto{ll,ull,imax,umax} normal symbols and just keep the underscore versions as strong alias. Obtained from DragonFly, based on the wide char version from Citrus. Reviewed by christos@
2006-10-08- Move strtoll.c and strtoull.c from libc/stdlib to common/libc/stdlib.thorpej
- Add strtoll.c and strtoull.c to libkern.