diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-22 20:52:00 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-22 20:52:00 +0200 |
| commit | 058aeef80e8a33d0e385f284b23eeb117f5ec547 (patch) | |
| tree | 9a7a96b7cde32cf66b6202f32ace18335ecc9cdb /lib/cmark/src | |
| parent | e9a0e392c6462712e6f02f3565b8a8cc1652952a (diff) | |
| download | kristall-058aeef80e8a33d0e385f284b23eeb117f5ec547.tar.gz | |
Includes cmark into build.
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 |
