mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-05-13 15:13:36 +00:00
* modules/stdint-h: Renamed from modules/stdint. * modules/stdint-h-tests: Renamed from modules/stdint-tests. * modules/stdint-h-c++-tests: Renamed from modules/stdint-c++-tests. * tests/test-stdint-h.c: Renamed from tests/test-stdint.c. * tests/test-stdint-h-c++.cc: Renamed from tests/test-stdint-c++.cc. * tests/test-stdint-h-c++2.cc: Renamed from tests/test-stdint-c++2.cc. * doc/posix-headers/stdint.texi: Update. * doc/gnulib-readme.texi: Update. * doc/gnulib.texi: Update. * modules/* (Depends-on): Update. * modules/stdint: New file.
36 lines
769 B
Plaintext
36 lines
769 B
Plaintext
Description:
|
|
strtoimax() function: convert string to 'intmax_t'.
|
|
|
|
Files:
|
|
lib/strtoimax.c
|
|
m4/strtoimax.m4
|
|
|
|
Depends-on:
|
|
inttypes-h-incomplete
|
|
assert-h [test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1]
|
|
stdint-h [test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1]
|
|
strtoll [test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_STRTOIMAX
|
|
gl_CONDITIONAL([GL_COND_OBJ_STRTOIMAX],
|
|
[test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1])
|
|
AM_COND_IF([GL_COND_OBJ_STRTOIMAX], [
|
|
gl_PREREQ_STRTOIMAX
|
|
])
|
|
gl_INTTYPES_MODULE_INDICATOR([strtoimax])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_STRTOIMAX
|
|
lib_SOURCES += strtoimax.c
|
|
endif
|
|
|
|
Include:
|
|
<inttypes.h>
|
|
|
|
License:
|
|
LGPL
|
|
|
|
Maintainer:
|
|
Paul Eggert
|