aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/memory.h
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-01-07 19:07:32 +0300
committerZyX <kp-pav@yandex.ru>2017-01-07 19:07:32 +0300
commitdea4bb33dc13a65e303b77ccda28601ebc246b85 (patch)
treeedea680e4a5481b3413017316e6919873c242bc8 /src/nvim/memory.h
parent6f267b3968d54f8bcd41d584a71bef9020ff773e (diff)
downloadrneovim-dea4bb33dc13a65e303b77ccda28601ebc246b85.tar.gz
rneovim-dea4bb33dc13a65e303b77ccda28601ebc246b85.tar.bz2
rneovim-dea4bb33dc13a65e303b77ccda28601ebc246b85.zip
unittest,memory: Fix tests
Diffstat (limited to 'src/nvim/memory.h')
-rw-r--r--src/nvim/memory.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/memory.h b/src/nvim/memory.h
index f65947d449..250ac3e08f 100644
--- a/src/nvim/memory.h
+++ b/src/nvim/memory.h
@@ -1,9 +1,10 @@
#ifndef NVIM_MEMORY_H
#define NVIM_MEMORY_H
+#include <stdbool.h> // for bool
#include <stdint.h> // for uint8_t
#include <stddef.h> // for size_t
-#include <time.h> // for time_t
+#include <time.h> // for time_t
/// `malloc()` function signature
typedef void *(*MemMalloc)(size_t);