From: Chris Hanson Date: Tue, 29 Jan 2002 05:57:24 +0000 (+0000) Subject: Don't use ; it is incompatible with older versions of X-Git-Tag: 20090517-FFI~2283 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=dbb8afe0e4dd498c9a503762cd05c0d532b5cc79;p=mit-scheme.git Don't use ; it is incompatible with older versions of ncurses. --- diff --git a/v7/src/microcode/confshared.h b/v7/src/microcode/confshared.h index a2c289ef6..8395935f4 100644 --- a/v7/src/microcode/confshared.h +++ b/v7/src/microcode/confshared.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: confshared.h,v 11.2 2002/01/29 04:58:46 cph Exp $ +$Id: confshared.h,v 11.3 2002/01/29 05:57:24 cph Exp $ Copyright (c) 2000, 2002 Massachusetts Institute of Technology @@ -48,12 +48,8 @@ USA. /* These C type definitions are needed by everybody. They should not be here, but it is unavoidable. */ typedef char Boolean; -#ifdef HAVE_STDBOOL_H -# include -#else -# define true ((Boolean) TRUE) -# define false ((Boolean) FALSE) -#endif +#define true ((Boolean) TRUE) +#define false ((Boolean) FALSE) /* This is the Scheme object type. The various fields are defined in "object.h". */