mirror of
https://github.com/neovim/neovim.git
synced 2026-02-05 12:01:22 +10:00
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
12 lines
255 B
C
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
|