mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
render: use portable HAS_INCLUDE() wrapper instead of __has_include()
This commit is contained in:
parent
79e054faff
commit
e19db15104
2 changed files with 9 additions and 1 deletions
6
macros.h
6
macros.h
|
|
@ -27,6 +27,12 @@
|
|||
#define HAS_BUILTIN(x) 0
|
||||
#endif
|
||||
|
||||
#ifdef __has_include
|
||||
#define HAS_INCLUDE(x) __has_include(x)
|
||||
#else
|
||||
#define HAS_INCLUDE(x) 0
|
||||
#endif
|
||||
|
||||
#ifdef __has_feature
|
||||
#define HAS_FEATURE(x) __has_feature(x)
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue