================ @@ -0,0 +1,74 @@ +// RUN: %clang_cc1 -fsyntax-only -verify -Wnonnull -Wno-format-security %s + +#include <stdarg.h> +#include <stddef.h> ---------------- Sirraide wrote:
```suggestion typedef __SIZE_TYPE__ size_t; ``` Clang tests should generally never include stdlib headers. If you need definitions from those headers, define them yourself (for `size_t` in particular, you can do `typedef __SIZE_TYPE__ size_t`). https://github.com/llvm/llvm-project/pull/158626 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits