unittest,memory: Fix tests

This commit is contained in:
ZyX
2017-01-07 19:07:32 +03:00
parent 6f267b3968
commit dea4bb33dc
2 changed files with 3 additions and 1 deletions

View File

@@ -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);