aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix_defs.h
diff options
context:
space:
mode:
authorHinidu <hinidu@gmail.com>2014-05-01 15:02:45 +0300
committerJustin M. Keyes <justinkz@gmail.com>2014-05-01 18:24:58 -0400
commit018bb73296eae20d608e068a500eaafe6e69876f (patch)
tree0c8b4a3502b489d5bc472cb53e8ec6e2508e9f97 /src/os_unix_defs.h
parent67a157c08d28810a9a7b460cb56b9e92d0d77e95 (diff)
downloadrneovim-018bb73296eae20d608e068a500eaafe6e69876f.tar.gz
rneovim-018bb73296eae20d608e068a500eaafe6e69876f.tar.bz2
rneovim-018bb73296eae20d608e068a500eaafe6e69876f.zip
Added missing #define guards in headers
Diffstat (limited to 'src/os_unix_defs.h')
-rw-r--r--src/os_unix_defs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/os_unix_defs.h b/src/os_unix_defs.h
index d9bd9191af..5ca09a7584 100644
--- a/src/os_unix_defs.h
+++ b/src/os_unix_defs.h
@@ -1,3 +1,6 @@
+#ifndef NEOVIM_OS_UNIX_DEFS_H
+#define NEOVIM_OS_UNIX_DEFS_H
+
/*
* VIM - Vi IMproved by Bram Moolenaar
*
@@ -277,3 +280,5 @@
/* We have three kinds of ACL support. */
#define HAVE_ACL (HAVE_POSIX_ACL || HAVE_SOLARIS_ACL || HAVE_AIX_ACL)
+
+#endif // NEOVIM_OS_UNIX_DEFS_H