mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 10:50:16 -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.
10 lines
167 B
C
10 lines
167 B
C
#include <sqlite3.h>
|
|
#include <string.h>
|
|
|
|
int main()
|
|
{
|
|
char sqlite3_version[] = SQLITE_VERSION;
|
|
|
|
return strcmp(sqlite3_version, CMAKE_EXPECTED_SQLite3_VERSION);
|
|
}
|