Features: Fix CompileFeatures test for C non-features

Add a "feature_test.c" file corresponding to "feature_test.cpp" but for
the C language.  This source will be needed by C_non_features entries.
This commit is contained in:
Brad King 2015-01-21 15:40:47 -05:00
parent 004e1540e0
commit f40c19b543
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#define STRINGIFY_IMPL(X) #X
#define STRINGIFY(X) STRINGIFY_IMPL(X)
#include STRINGIFY(TEST)
int main(void)
{
return 0;
}