summaryrefslogtreecommitdiff
path: root/archived/projt-launcher/scripts/gen-cmark-config.sh
blob: 21279c1032659baa32a9b0a7a7ed62eae2cd964b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
# Generate cmark_config.h

cat > "$1" << 'EOF'
#ifndef CMARK_CONFIG_H
#define CMARK_CONFIG_H

#ifdef __cplusplus
extern "C" {
#endif

#define HAVE_STDBOOL_H 1
#define HAVE___BUILTIN_EXPECT 1
#define HAVE___ATTRIBUTE__ 1

#ifdef __cplusplus
}
#endif

#endif /* CMARK_CONFIG_H */
EOF