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