mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 07:28:34 +00:00
13 lines
244 B
C
13 lines
244 B
C
#ifndef NVIM_EVAL_GC_H
|
|
#define NVIM_EVAL_GC_H
|
|
|
|
#include "nvim/eval/typval.h"
|
|
|
|
extern dict_T *gc_first_dict;
|
|
extern list_T *gc_first_list;
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "eval/gc.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_EVAL_GC_H
|