Files
neovim/src/nvim/memory.h
Justin M. Keyes df072c3b2b refactor: eliminate misc2.c
move `call_shell` to misc1.c
Move some fns to state.c
Move some fns to option.c
Move some fns to memline.c
Move `vim_chdir*` fns to file_search.c
Move some fns to new module, bytes.c
Move some fns to fileio.c
2016-09-13 16:20:09 +02:00

12 lines
255 B
C

#ifndef NVIM_MEMORY_H
#define NVIM_MEMORY_H
#include <stdint.h> // for uint8_t
#include <stddef.h> // for size_t
#include <time.h> // for time_t
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "memory.h.generated.h"
#endif
#endif // NVIM_MEMORY_H