* lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
[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_.h
11 m4/stdint.m4
12 m4/absolute-header.m4
13 m4/longlong.m4
14
15 Depends-on:
16
17 configure.ac:
18 gl_STDINT_H
19
20 Makefile.am:
21 BUILT_SOURCES += $(STDINT_H)
22 EXTRA_DIST += 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 stdint.h: stdint_.h
27         sed -e 's/@''HAVE_WCHAR_H''@/$(HAVE_WCHAR_H)/g' \
28             -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \
29             -e 's|@''ABSOLUTE_STDINT_H''@|$(ABSOLUTE_STDINT_H)|g' \
30             -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \
31             -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \
32             -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \
33             -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \
34             -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \
35             -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \
36             -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \
37             -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \
38             -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \
39             -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \
40             -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \
41             -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \
42             -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \
43             -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \
44             -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \
45             -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \
46             -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \
47             -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \
48             < $(srcdir)/stdint_.h > $@-t
49         mv $@-t $@
50 MOSTLYCLEANFILES += stdint.h stdint.h-t
51
52 Include:
53 #include <stdint.h>
54
55 License:
56 LGPL
57
58 Maintainer:
59 all