mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 07:58:35 +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
|