Current section

Files

Jump to
cmark c_src config.h
Raw

c_src/config.h

#define HAVE_STDBOOL_H
#ifdef HAVE_STDBOOL_H
#include <stdbool.h>
#elif !defined(__cplusplus)
typedef char bool;
#endif
#define HAVE___BUILTIN_EXPECT
#define HAVE___ATTRIBUTE__
#ifdef HAVE___ATTRIBUTE__
#define CMARK_ATTRIBUTE(list) __attribute__ (list)
#else
#define CMARK_ATTRIBUTE(list)
#endif
#define HAVE_VA_COPY
#ifndef HAVE_VA_COPY
#define va_copy(dest, src) ((dest) = (src))
#endif