summaryrefslogtreecommitdiff
path: root/src/os_beos.h
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.h
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.h')
-rw-r--r--src/os_beos.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/os_beos.h b/src/os_beos.h
index 260834e60..e55c38963 100644
--- a/src/os_beos.h
+++ b/src/os_beos.h
@@ -22,4 +22,6 @@
/* select emulation */
-#include <net/socket.h> /* for typedefs and #defines only */
+#ifndef PROTO
+# include <net/socket.h> /* for typedefs and #defines only */
+#endif