aboutsummaryrefslogtreecommitdiff
path: root/lib/cmark/src/config.h
blob: a24e7901f3075a2f821ff11339efe6cea5525ae9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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