summaryrefslogtreecommitdiff
path: root/src/os_beos.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-11-20 16:53:39 +0100
committerBram Moolenaar <Bram@vim.org>2012-11-20 16:53:39 +0100
commit82881498663eb692e90dcfb9da0a7f573f228e35 (patch)
treebf2ffc25d638538bd870377c87d07709c0fcae6f /src/os_beos.c
parent0ac24e1ef4b099c95c55261bc2d227ca5707d295 (diff)
downloadvim-git-82881498663eb692e90dcfb9da0a7f573f228e35.tar.gz
updated for version 7.3.719v7.3.719
Problem: Cannot run new version of cproto, it fails on missing include files. Solution: Add lots of #ifndef PROTO
Diffstat (limited to 'src/os_beos.c')
-rw-r--r--src/os_beos.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/os_beos.c b/src/os_beos.c
index 10135aa3b..2eed684b8 100644
--- a/src/os_beos.c
+++ b/src/os_beos.c
@@ -13,7 +13,10 @@
#include <float.h>
#include <termios.h>
-#include <kernel/OS.h>
+#ifndef PROTO
+# include <kernel/OS.h>
+#endif
+
#include "vim.h"
#if USE_THREAD_FOR_INPUT_WITH_TIMEOUT