syncfiles/.vscode/c_cpp_properties.json
Dietrich Epp 3f6acc9f42 Use more modern C
While C99 is not supported by old Mac OS compilers, line comments are
supported. Keeping strictly to old C90 style code is annoying without
benefit.
2022-04-21 13:57:17 -04:00

13 lines
236 B
JSON

{
"configurations": [
{
"name": "Linux",
"includePath": ["${workspaceFolder}"],
"cStandard": "c11",
"intelliSenseMode": "linux-clang-x64",
"compilerPath": "/usr/bin/clang"
}
],
"version": 4
}