diff options
author | Hinidu <hinidu@gmail.com> | 2014-05-01 15:02:45 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-01 18:24:58 -0400 |
commit | 018bb73296eae20d608e068a500eaafe6e69876f (patch) | |
tree | 0c8b4a3502b489d5bc472cb53e8ec6e2508e9f97 /src/macros.h | |
parent | 67a157c08d28810a9a7b460cb56b9e92d0d77e95 (diff) | |
download | rneovim-018bb73296eae20d608e068a500eaafe6e69876f.tar.gz rneovim-018bb73296eae20d608e068a500eaafe6e69876f.tar.bz2 rneovim-018bb73296eae20d608e068a500eaafe6e69876f.zip |
Added missing #define guards in headers
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/macros.h b/src/macros.h index 8dd412f838..5f7147be23 100644 --- a/src/macros.h +++ b/src/macros.h @@ -1,3 +1,6 @@ +#ifndef NEOVIM_MACROS_H +#define NEOVIM_MACROS_H + /* * VIM - Vi IMproved by Bram Moolenaar * @@ -159,3 +162,5 @@ # define PTR2CHAR(p) (has_mbyte ? mb_ptr2char(p) : (int)*(p)) # define RESET_BINDING(wp) (wp)->w_p_scb = FALSE; (wp)->w_p_crb = FALSE + +#endif // NEOVIM_MACROS_H |