aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lua/stdlib.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-10-26 21:43:13 +0200
committerGitHub <noreply@github.com>2021-10-26 21:43:13 +0200
commita5d6f36fc7e67aa008b4ae8a72b1367a765660b8 (patch)
tree2e1de05ac958bf80d692b2f29491eccb2e4e1392 /src/nvim/lua/stdlib.h
parent6cc456deeb8f9fa161b6c691df50a0798bfc6b69 (diff)
parent13d331ef0de7e59ec846c47e4b0639b9e50cb06e (diff)
downloadrneovim-a5d6f36fc7e67aa008b4ae8a72b1367a765660b8.tar.gz
rneovim-a5d6f36fc7e67aa008b4ae8a72b1367a765660b8.tar.bz2
rneovim-a5d6f36fc7e67aa008b4ae8a72b1367a765660b8.zip
Merge pull request #16125 from dundargoc/refactor/lua/split-executor
refactor: split lua/executor.c into two files
Diffstat (limited to 'src/nvim/lua/stdlib.h')
-rw-r--r--src/nvim/lua/stdlib.h10
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