blob: c2e862e46968096b1cd08124ae83f38cd36b643f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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
|