Make it possible to #include <stdbool.h> without any #ifdefs.
[gnulib.git] / modules / stdbool
1 Description:
2
3 Files:
4 m4/stdbool.m4
5
6 Depends-on:
7
8 configure.ac:
9 AM_STDBOOL_H
10
11 Makefile.am:
12 EXTRA_DIST += stdbool.h.in
13
14 # The following is needed in order to create an <stdbool.h> when the system
15 # doesn't have one that works.
16 all-local: @STDBOOL_H@
17 stdbool.h: stdbool.h.in
18         sed -e 's/@''HAVE__BOOL''@/@HAVE__BOOL@/g' < $(srcdir)/stdbool.h.in > stdbool.h
19 MOSTLYCLEANFILES += stdbool.h
20
21 Include:
22 #include <stdbool.h>
23