Mercurial > ~dholland > hg > tradcpp > index.cgi
comparison files.c @ 183:4c3375895c6e
Don't use <stdbool.h> unless __STDC__ is large enough.
Works around Solaris's broken environment.
author | David A. Holland |
---|---|
date | Fri, 12 Jun 2015 03:28:19 -0400 (2015-06-12) |
parents | ffdb0b73856f |
children | 9637bf434f8e |
comparison
equal
deleted
inserted
replaced
182:f7814226906c | 183:4c3375895c6e |
---|---|
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
27 * POSSIBILITY OF SUCH DAMAGE. | 27 * POSSIBILITY OF SUCH DAMAGE. |
28 */ | 28 */ |
29 | 29 |
30 #include <stdbool.h> | |
31 #include <stdio.h> | 30 #include <stdio.h> |
32 #include <stdlib.h> | 31 #include <stdlib.h> |
33 #include <string.h> | 32 #include <string.h> |
34 #include <unistd.h> | 33 #include <unistd.h> |
35 #include <fcntl.h> | 34 #include <fcntl.h> |
36 #include <errno.h> | 35 #include <errno.h> |
37 | 36 |
37 #include "bool.h" | |
38 #include "array.h" | 38 #include "array.h" |
39 #include "mode.h" | 39 #include "mode.h" |
40 #include "place.h" | 40 #include "place.h" |
41 #include "files.h" | 41 #include "files.h" |
42 #include "directive.h" | 42 #include "directive.h" |