Add a Maintainer.
[gnulib.git] / modules / stdbool
1 Description:
2 An <stdbool.h> that nearly conforms to C99.
3 (Nearly: casts to bool may not work.)
4
5 Files:
6 lib/stdbool.h.in
7 m4/stdbool.m4
8
9 Depends-on:
10
11 configure.ac:
12 AM_STDBOOL_H
13
14 Makefile.am:
15 EXTRA_DIST += stdbool.h.in
16
17 # The following is needed in order to create an <stdbool.h> when the system
18 # doesn't have one that works.
19 all-local $(lib_OBJECTS): @STDBOOL_H@
20 stdbool.h: stdbool.h.in
21         sed -e 's/@''HAVE__BOOL''@/@HAVE__BOOL@/g' < $(srcdir)/stdbool.h.in > stdbool.h
22 MOSTLYCLEANFILES += stdbool.h
23
24 Include:
25 #include <stdbool.h>
26
27 Maintainer:
28 Bruno Haible
29