bytecodealliance / wit-bindgen

A language binding generator for WebAssembly interface types
Apache License 2.0
997 stars 190 forks source link

Add stddef.h include in C headers #1031

Closed jtsylve closed 1 month ago

jtsylve commented 1 month ago

size_t is used in the generated C headers, but is not guaranteed by the standard to be defined in either the stdint.h or stdbool.h headers that are unconditionally generated.

This patch adds an unconditional include to stddef.h to address compile issues on certain standard libraries.