From 3f9a4c49fa998d108ab8ca37a2faa7ce14ff4cf3 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 21 Apr 2011 19:33:25 -0600 Subject: [PATCH] fix `#define's that are used in more configurations than originally --- src/racket/src/port.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/racket/src/port.c b/src/racket/src/port.c index ecef7e53c5..8ee1d7282f 100644 --- a/src/racket/src/port.c +++ b/src/racket/src/port.c @@ -278,12 +278,12 @@ typedef struct Scheme_FD { # endif } Scheme_FD; -# define MZ_FLUSH_NEVER 0 -# define MZ_FLUSH_BY_LINE 1 -# define MZ_FLUSH_ALWAYS 2 - #endif +#define MZ_FLUSH_NEVER 0 +#define MZ_FLUSH_BY_LINE 1 +#define MZ_FLUSH_ALWAYS 2 + #ifdef SOME_FDS_ARE_NOT_SELECTABLE # include #endif