mirror of
https://github.com/neovim/neovim.git
synced 2026-08-03 22:28:43 +00:00
11 lines
253 B
C
11 lines
253 B
C
#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;
|