mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-28 11:54:16 +00: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.
10 lines
82 B
C++
10 lines
82 B
C++
|
|
#include "shared.h"
|
|
|
|
#include "stdio.h"
|
|
|
|
void shared()
|
|
{
|
|
printf("shared\n");
|
|
}
|