We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b7d3d0 commit ba4e909Copy full SHA for ba4e909
1 file changed
ci/generate_checked_functions.py
@@ -150,6 +150,12 @@ def process_header():
150
with open(output_header, "w") as f:
151
f.write("#ifndef WASM_EXPORT_CHECKED_H\n#define WASM_EXPORT_CHECKED_H\n\n")
152
153
+ # necessary headers
154
+ f.write("#include <stdbool.h>\n")
155
+ f.write("#include <stdint.h>\n")
156
+ f.write("#include <stdlib.h>\n")
157
+ f.write('#include "wasm_export.h"\n\n')
158
+
159
# Write the updated Result struct
160
f.write(RESULT_STRUCT + "\n")
161
0 commit comments