mirror of
https://github.com/reactos/CMake.git
synced 2024-12-03 17:11:04 +00:00
ed98209ddc
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");
|
|
}
|