Skip to content

Commit 9a4adf7

Browse files
uncomputableroconnor-blockstream
authored andcommitted
Bitstream: Use stddef instead of stdio
stddef.h is available for wasm while stdio.h is not available. See bitcoin-core/secp256k1#1149 See bitcoin-core/secp256k1#1148
1 parent 6108c98 commit 9a4adf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bitstream.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#ifndef SIMPLICITY_BITSTREAM_H
33
#define SIMPLICITY_BITSTREAM_H
44

5-
#include <stdio.h>
5+
#include <stddef.h>
66
#include <stdint.h>
77
#include <stdbool.h>
88
#include <simplicity/errorCodes.h>

0 commit comments

Comments
 (0)