llvm/llvm/test/tools/llvm-cov/Inputs/sources_specified/abs.h

int abs(int x) {
  if (x < 0)
    return -x;
  return x;
}