mirror of
https://github.com/neovim/neovim.git
synced 2026-02-05 12:01:22 +10: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.
6 lines
90 B
C
6 lines
90 B
C
#pragma once
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "math.h.generated.h"
|
|
#endif
|