summaryrefslogtreecommitdiffstatshomepage
path: root/src/nvim/eval/gc.c
blob: 9c1b897eda19bb9f48bef59250bf957b5c040aaf (plain)
1
2
3
4
5
6
7
8
9
10
#include <stddef.h>

#include "nvim/eval/gc.h"

#include "eval/gc.c.generated.h"  // IWYU pragma: export

/// Head of list of all dictionaries
DLLEXPORT dict_T *gc_first_dict = NULL;
/// Head of list of all lists
DLLEXPORT list_T *gc_first_list = NULL;