diff options
author | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-19 14:36:21 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-07-20 18:27:45 -0400 |
commit | 8d44e36b1af2b8a0953722bb0a96234dabe3a404 (patch) | |
tree | aa91d06618dce42450a3604fbe831c976e458ec8 | |
parent | a9d679b1d703ff6213651e54e035fcf5ee8d88d0 (diff) | |
download | rneovim-8d44e36b1af2b8a0953722bb0a96234dabe3a404.tar.gz rneovim-8d44e36b1af2b8a0953722bb0a96234dabe3a404.tar.bz2 rneovim-8d44e36b1af2b8a0953722bb0a96234dabe3a404.zip |
os/time: include time.h in os/time.h
Include what you use, also in the positive direction.
-rw-r--r-- | src/nvim/os/time.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/os/time.h b/src/nvim/os/time.h index 8c73fc0c3b..b21808307f 100644 --- a/src/nvim/os/time.h +++ b/src/nvim/os/time.h @@ -3,6 +3,7 @@ #include <stdint.h> #include <stdbool.h> +#include <time.h> #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/time.h.generated.h" |