From 82881498663eb692e90dcfb9da0a7f573f228e35 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 20 Nov 2012 16:53:39 +0100 Subject: updated for version 7.3.719 Problem: Cannot run new version of cproto, it fails on missing include files. Solution: Add lots of #ifndef PROTO --- src/gui_w48.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/gui_w48.c') diff --git a/src/gui_w48.c b/src/gui_w48.c index 4d38c1510..61c53a7d6 100644 --- a/src/gui_w48.c +++ b/src/gui_w48.c @@ -25,6 +25,10 @@ #ifdef DEBUG # include #endif + +/* cproto fails on missing include files */ +#ifndef PROTO + #ifndef __MINGW32__ # include #endif @@ -44,6 +48,8 @@ # include "glbl_ime.h" #endif +#endif /* PROTO */ + #ifdef FEAT_MENU # define MENUHINTS /* show menu hints in command line */ #endif -- cgit v1.2.3