update COPYING.DOC to fdl version 1.2.
[gnulib.git] / modules / stdbool
1 Description:
2
3 Files:
4 m4/stdbool.m4
5
6 Depends-on:
7
8 configure.ac:
9 AC_HEADER_STDBOOL
10
11 Makefile.am:
12
13 Include:
14 #if HAVE_STDBOOL_H
15 # include <stdbool.h>
16 #else
17 # if ! HAVE__BOOL
18 #  ifdef __cplusplus
19 typedef bool _Bool;
20 #  else
21 typedef enum {false = 0, true = 1} _Bool;
22 #  endif
23 # endif
24 # define bool _Bool
25 # define false 0
26 # define true 1
27 # define __bool_true_false_are_defined 1
28 #endif
29