fix: include static function declarations

This commit is contained in:
Jakub Łuczyński 2020-02-10 20:42:54 +01:00
parent 3477512f81
commit 9d7ce03ef1

View File

@ -17,6 +17,10 @@
#define FUNCARG(fp, j) ((char_u **)(fp->uf_args.ga_data))[j] #define FUNCARG(fp, j) ((char_u **)(fp->uf_args.ga_data))[j]
#define FUNCLINE(fp, j) ((char_u **)(fp->uf_lines.ga_data))[j] #define FUNCLINE(fp, j) ((char_u **)(fp->uf_lines.ga_data))[j]
#ifdef INCLUDE_GENERATED_DECLARATIONS
#include "eval/user_funcs.c.generated.h"
#endif
hashtab_T func_hashtab; hashtab_T func_hashtab;
// Used by get_func_tv() // Used by get_func_tv()