gc.c (253B)
1 #include <stddef.h> 2 3 #include "nvim/eval/gc.h" 4 5 #include "eval/gc.c.generated.h" // IWYU pragma: export 6 7 /// Head of list of all dictionaries 8 DLLEXPORT dict_T *gc_first_dict = NULL; 9 /// Head of list of all lists 10 DLLEXPORT list_T *gc_first_list = NULL;