strtoumax: fix typo in previous commit.
[gnulib.git] / modules / strtoumax
1 Description:
2 strtoumax() function: convert string to 'uintmax_t'.
3
4 Files:
5 lib/strtoimax.c
6 lib/strtoumax.c
7 m4/longlong.m4
8 m4/strtoumax.m4
9
10 Depends-on:
11 inttypes-incomplete
12 verify          [test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1]
13 stdint          [test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1]
14 strtoull        [{ test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; } && test $ac_cv_type_unsigned_long_long_int = yes]
15
16 configure.ac:
17 gl_FUNC_STRTOUMAX
18 if test $HAVE_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; then
19   AC_LIBOBJ([strtoumax])
20   gl_PREREQ_STRTOUMAX
21 fi
22 gl_INTTYPES_MODULE_INDICATOR([strtoumax])
23
24 Makefile.am:
25
26 Include:
27 <inttypes.h>
28
29 License:
30 LGPL
31
32 Maintainer:
33 Paul Eggert