aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/preprocessor/has-feature.c
blob: 3ab7c3e039fa6814214ce464cfe26fb1e6980019 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __has_feature
__has_feature()??? Quesako?
#define __has_feature(x) 0
#else
"has __has_feature(), yeah!"
#endif

#if __has_feature(not_a_feature)
#error "not a feature!"
#endif

/*
 * check-name: has-feature
 * check-command: sparse -E $file
 * check-known-to-fail
 *
 * check-output-start

"has __has_feature(), yeah!"
 * check-output-end
 */