Loading
clang-tools: use $C_INCLUDE_PATH for C includes
$CPATH is taken to mean the same thing as -I by clang, whereas $C_INCLUDE_PATH is -isystem. Using $CPATH means tools like clangd will generate warnings for problems in system headers, which is undesirable. See llvm/llvm-project#154015