mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00

This type itself is not eval-specific. Moving it to types.h can avoid including eval/funcs.h in many headers, and types.h is already included by many headers.
10 lines
183 B
C
10 lines
183 B
C
#ifndef NVIM_TESTING_H
|
|
#define NVIM_TESTING_H
|
|
|
|
#include "nvim/eval/typval.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "testing.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_TESTING_H
|