mirror of
https://github.com/reactos/CMake.git
synced 2024-12-03 00:57:25 +00:00
f40c19b543
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.
11 lines
127 B
C
11 lines
127 B
C
|
|
#define STRINGIFY_IMPL(X) #X
|
|
#define STRINGIFY(X) STRINGIFY_IMPL(X)
|
|
|
|
#include STRINGIFY(TEST)
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|