mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 05:50:42 +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.
11 lines
133 B
C++
11 lines
133 B
C++
|
|
#include "B.h"
|
|
|
|
#include <jni.h>
|
|
#include <stdio.h>
|
|
|
|
JNIEXPORT void JNICALL Java_B_printName(JNIEnv*, jobject)
|
|
{
|
|
printf("B\n");
|
|
}
|