mirror of
https://github.com/neovim/neovim.git
synced 2026-01-14 17:15:23 +00:00
Also include stdint.h in khash.h. It was transitively included by vim.h via memory.h before. khash.h accidentally relied on that.
10 lines
184 B
C
10 lines
184 B
C
#ifndef NVIM_MEMORY_H
|
|
#define NVIM_MEMORY_H
|
|
|
|
#include <stddef.h> // for size_t
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "memory.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_MEMORY_H
|