mirror of
https://github.com/neovim/neovim.git
synced 2026-02-21 19:06:52 +00:00
Remove `export` pramgas from defs headers as it causes IWYU to believe that the definitions from the defs headers comes from main header, which is not what we really want.
18 lines
522 B
C
18 lines
522 B
C
#pragma once
|
|
|
|
#include <stdio.h> // IWYU pragma: keep
|
|
|
|
#include "nvim/decoration_defs.h" // IWYU pragma: keep
|
|
#include "nvim/eval/typval_defs.h" // IWYU pragma: keep
|
|
#include "nvim/fold_defs.h" // IWYU pragma: keep
|
|
#include "nvim/garray_defs.h" // IWYU pragma: keep
|
|
#include "nvim/macros_defs.h"
|
|
#include "nvim/pos_defs.h" // IWYU pragma: keep
|
|
#include "nvim/types_defs.h" // IWYU pragma: keep
|
|
|
|
EXTERN int disable_fold_update INIT( = 0);
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "fold.h.generated.h"
|
|
#endif
|