[libc] Include stddef.h after D137871
authorFangrui Song <i@maskray.me>
Tue, 15 Nov 2022 20:22:33 +0000 (20:22 +0000)
committerFangrui Song <i@maskray.me>
Tue, 15 Nov 2022 20:22:33 +0000 (20:22 +0000)
C standard does not require stdint.h to define size_t.

libc/src/__support/number_pair.h

index 665a096..3c2f0eb 100644 (file)
@@ -11,7 +11,7 @@
 
 #include "CPP/type_traits.h"
 
-#include <stdint.h>
+#include <stddef.h>
 
 namespace __llvm_libc {