From 05af4e39b4c15021ef2967b252f6274e0fb723b9 Mon Sep 17 00:00:00 2001 From: "Peter J. Farley III" Date: Mon, 16 Oct 2000 14:15:59 -0400 Subject: [ID 20001016.012] [PATCHes Included]OK: perl v5.7.0 on dos-djgpp djgpp Message-Id: <4.3.1.0.20001016180235.00ac65a0@pop5.banet.net> p4raw-id: //depot/perl@7350 --- dosish.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'dosish.h') diff --git a/dosish.h b/dosish.h index 08b48fa0fe..5f12b9d1b2 100644 --- a/dosish.h +++ b/dosish.h @@ -100,7 +100,11 @@ #define fwrite1 fwrite #define Fstat(fd,bufptr) fstat((fd),(bufptr)) -#define Fflush(fp) fflush(fp) +#ifdef DJGPP +# define Fflush(fp) djgpp_fflush(fp) +#else +# define Fflush(fp) fflush(fp) +#endif #define Mkdir(path,mode) mkdir((path),(mode)) #ifndef WIN32 -- cgit v1.2.1