mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-16 14:08:35 +08: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.
9 lines
93 B
C++
9 lines
93 B
C++
#include "mylib.h"
|
|
|
|
#include "stdio.h"
|
|
|
|
void mylib_function()
|
|
{
|
|
printf("This is mylib");
|
|
}
|