diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-10-23 11:46:59 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-10-26 21:04:52 +0200 |
commit | 13d331ef0de7e59ec846c47e4b0639b9e50cb06e (patch) | |
tree | 1bd8495345b0fd33c70de85b8ac41a6deb39fd7d /src/nvim/lua/stdlib.h | |
parent | 09e96fe6096f07365eb65b51bb7f2fd0f1b043b0 (diff) | |
download | rneovim-13d331ef0de7e59ec846c47e4b0639b9e50cb06e.tar.gz rneovim-13d331ef0de7e59ec846c47e4b0639b9e50cb06e.tar.bz2 rneovim-13d331ef0de7e59ec846c47e4b0639b9e50cb06e.zip |
refactor: split executor.c into two files
Diffstat (limited to 'src/nvim/lua/stdlib.h')
-rw-r--r-- | src/nvim/lua/stdlib.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/nvim/lua/stdlib.h b/src/nvim/lua/stdlib.h new file mode 100644 index 0000000000..17aec6714d --- /dev/null +++ b/src/nvim/lua/stdlib.h @@ -0,0 +1,10 @@ +#ifndef NVIM_LUA_STDLIB_H +#define NVIM_LUA_STDLIB_H + +#include <lua.h> + +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "lua/stdlib.h.generated.h" +#endif + +#endif // NVIM_LUA_STDLIB_H |