mirror of
https://github.com/neovim/neovim.git
synced 2025-10-18 07:41:51 +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
162 B
C
9 lines
162 B
C
#pragma once
|
|
|
|
#include "nvim/api/keysets.h"
|
|
#include "nvim/api/private/defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "api/window.h.generated.h"
|
|
#endif
|