mirror of
https://github.com/neovim/neovim.git
synced 2025-10-14 05:46:12 +00:00

This avoids including ex_eval.h in any other header, thus preventing future circular includes.
11 lines
231 B
C
11 lines
231 B
C
#ifndef NVIM_EX_EVAL_H
|
|
#define NVIM_EX_EVAL_H
|
|
|
|
#include "nvim/ex_cmds_defs.h" // for exarg_T
|
|
#include "nvim/ex_eval_defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "ex_eval.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_EX_EVAL_H
|