Replacement for stdbool.h

This commit is contained in:
Guus Sliepen 2003-07-30 16:00:59 +00:00
parent fcbe29bc4c
commit 2edc764a33

View file

@ -27,7 +27,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
@ -36,6 +35,14 @@
#include <fcntl.h>
#include <unistd.h>
#ifdef HAVE_STDBOOL_H
#include <stdbool.h>
#else
typedef int bool;
#define true 1
#define false 0
#endif
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#endif