diff options
Diffstat (limited to 'lib/cmark/src')
| -rw-r--r-- | lib/cmark/src/config.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/cmark/src/config.h b/lib/cmark/src/config.h new file mode 100644 index 0000000..a24e790 --- /dev/null +++ b/lib/cmark/src/config.h @@ -0,0 +1,18 @@ +#ifndef CMARK_CONFIG_H +#define CMARK_CONFIG_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include <stdbool.h> + +#define HAVE___BUILTIN_EXPECT +#define CMARK_ATTRIBUTE(list) __attribute__ (list) +#define CMARK_INLINE inline + +#ifdef __cplusplus +} +#endif + +#endif |
