[fuzzer] Fix build on musl

cstddef is needed for size_t definition.
(Multiple headers can provide size_t but none of them exists.)

Reviewed By: MaskRay

Differential Revision: https://reviews.llvm.org/D96213

GitOrigin-RevId: 60e32a1f34e9ea60155a98bbe6ee5ec2a383efa3
diff --git a/FuzzerInterceptors.cpp b/FuzzerInterceptors.cpp
index b877986..d5b0a42 100644
--- a/FuzzerInterceptors.cpp
+++ b/FuzzerInterceptors.cpp
@@ -25,6 +25,7 @@
   }
 
 #include <cassert>
+#include <cstddef> // for size_t
 #include <cstdint>
 #include <dlfcn.h> // for dlsym()