mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 01:16:31 +00:00

It is less error-prone than manually defining header guards. Pretty much all compilers support it even if it's not part of the C standard.
9 lines
156 B
C
9 lines
156 B
C
#pragma once
|
|
|
|
#include "nvim/buffer_defs.h"
|
|
#include "nvim/ex_cmds_defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "bufwrite.h.generated.h"
|
|
#endif
|