From 30704f2ba27f2466561b6551a9948d39111ee563 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Tue, 13 Dec 2011 00:00:13 +0000 Subject: [PATCH] Borland and MS C are ancient creaking messes of poo. --- src/conio/cterm.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/conio/cterm.h b/src/conio/cterm.h index 8e1ab920e3..fb011f09d6 100644 --- a/src/conio/cterm.h +++ b/src/conio/cterm.h @@ -35,8 +35,9 @@ #define _CTERM_H_ #include <stdio.h> /* FILE* */ +#if !(defined __BORLANDC__ || defined _MSC_VER) #include <stdbool.h> -#ifndef __bool_true_false_are_defined +#else #define bool int enum { false, true }; #endif -- GitLab