mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 03:11:08 -06:00
Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0.
15 lines
206 B
C
15 lines
206 B
C
#include "testConly.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
int CsharedFunction()
|
|
{
|
|
#ifndef TEST_C_FLAGS
|
|
printf("TEST_C_FLAGS failed\n");
|
|
return 0;
|
|
#else
|
|
printf("Passed: TEST_C_FLAGS passed\n");
|
|
#endif
|
|
return 1;
|
|
}
|