log10l: Work around inaccurate implementation on NetBSD.
[gnulib.git] / modules / stdint
blobd50b453f44552a9c64cc360dec9fee1838257a53
1 Description:
2 A GNU-like <stdint.h>.
3 It nearly conforms to C99 and to ISO/IEC TS 18661-1:2014.
4 Assumes typical host with 8-bit bytes, two's complement
5 representation, and no padding or trap representations, with int
6 widths equal to 8, 16, 32, and 64 bits.  {uint,int}_fast{8,16,32,64}_t
7 may not correspond to the fastest types available on the system.
8 Macros are used instead of typedefs.
10 Files:
11 lib/stdint.in.h
12 m4/stdint.m4
13 m4/wint_t.m4
14 m4/longlong.m4
16 Depends-on:
17 include_next
18 limits-h
19 multiarch
20 sys_types
22 configure.ac:
23 gl_STDINT_H
25 Makefile.am:
26 BUILT_SOURCES += $(STDINT_H)
28 # We need the following in order to create <stdint.h> when the system
29 # doesn't have one that works with the given compiler.
30 if GL_GENERATE_STDINT_H
31 stdint.h: stdint.in.h $(top_builddir)/config.status
32         $(AM_V_GEN)rm -f $@-t $@ && \
33         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
34           sed -e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
35               -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \
36               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
37               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
38               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
39               -e 's|@''NEXT_STDINT_H''@|$(NEXT_STDINT_H)|g' \
40               -e 's/@''HAVE_C99_STDINT_H''@/$(HAVE_C99_STDINT_H)/g' \
41               -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \
42               -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \
43               -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \
44               -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \
45               -e 's/@''HAVE_WCHAR_H''@/$(HAVE_WCHAR_H)/g' \
46               -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \
47               -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \
48               -e 's/@''APPLE_UNIVERSAL_BUILD''@/$(APPLE_UNIVERSAL_BUILD)/g' \
49               -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \
50               -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \
51               -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \
52               -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \
53               -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \
54               -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \
55               -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \
56               -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \
57               -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \
58               -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \
59               -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \
60               -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \
61               -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \
62               -e 's/@''GNULIB_OVERRIDES_WINT_T''@/$(GNULIB_OVERRIDES_WINT_T)/g' \
63               < $(srcdir)/stdint.in.h; \
64         } > $@-t && \
65         mv $@-t $@
66 else
67 stdint.h: $(top_builddir)/config.status
68         rm -f $@
69 endif
70 MOSTLYCLEANFILES += stdint.h stdint.h-t
72 Include:
73 <stdint.h>
75 License:
76 LGPLv2+
78 Maintainer:
79 all