mirror of
https://github.com/neovim/neovim.git
synced 2026-03-05 08:37:14 +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.
8 lines
114 B
C
8 lines
114 B
C
#pragma once
|
|
|
|
#include "nvim/vim.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "input.h.generated.h"
|
|
#endif
|