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