diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-24 19:11:51 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-24 19:25:07 -0300 |
commit | 32f118a47f108e4dc26fbea6afce9648ba610079 (patch) | |
tree | d0be52bddc14a617daf9313f6767093ac7a58483 /src/if_cscope.c | |
parent | ed42c808b61dd745e76d19c6ffb2612496a779a1 (diff) | |
download | rneovim-32f118a47f108e4dc26fbea6afce9648ba610079.tar.gz rneovim-32f118a47f108e4dc26fbea6afce9648ba610079.tar.bz2 rneovim-32f118a47f108e4dc26fbea6afce9648ba610079.zip |
Implement `mch_delay` on top of libuv
Needed to temporarily move two static variables from os_unix.c to 'globals.h'
as those are shared by other functions still in os_unix.
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r-- | src/if_cscope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c index edfc2b7596..a6229529ea 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -17,7 +17,7 @@ #include "message.h" #include "misc1.h" #include "misc2.h" -#include "os_unix.h" +#include "os/time.h" #include "quickfix.h" #include "tag.h" #include "ui.h" |