History log of /netbsd-src/common/lib/libc/stdlib/strtoumax.c (Results 1 – 6 of 6)
Revision Date Author Comments
# a67fde03 16-Apr-2013 joerg <joerg@NetBSD.org>

Add strtol_l and friends. Switch _citrus_bcs_strtol to use plain
strtol_l unless in tools mode. Add note to retire the BCS code on the
next libc major bump.


# 3ae58345 10-Sep-2008 joerg <joerg@NetBSD.org>

Prepare use of strtoull, strtoumax and strtoimax in tools/compat by
including nbtool_config.h.


# 331139bd 22-Aug-2008 matt <matt@NetBSD.org>

Properly deal with LIBC namespace issues.


# 5577c7fc 20-Aug-2008 oster <oster@NetBSD.org>

Fix build breakage by adding appropriate #includes.
Patch from joerg@


# 245e0863 20-Aug-2008 joerg <joerg@NetBSD.org>

Unify the implementation of strto{l,ul,ll,ull,imax,umax,q,uq} into one
version for signed and one version for unsigned data types.

Add a check for supported bases and set errno (userland) or panic
(

Unify the implementation of strto{l,ul,ll,ull,imax,umax,q,uq} into one
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@

show more ...


# 7d3d66c9 22-Apr-2006 thorpej <thorpej@NetBSD.org>

Move strtoumax.c from libc/stdlib to common/libc/stdlib and include it
in libkern. Required for new code coming soon.