1// This is an open source non-commercial project. Dear PVS-Studio, please check
2// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
3
4#include "nvim/eval/typval.h"
5#include "nvim/eval/gc.h"
6
7#ifdef INCLUDE_GENERATED_DECLARATIONS
8# include "eval/gc.c.generated.h"
9#endif
10
11/// Head of list of all dictionaries
12dict_T *gc_first_dict = NULL;
13/// Head of list of all lists
14list_T *gc_first_list = NULL;
15