Skip to content

Commit ce3caef

Browse files
committed
Add missing stdlib.h include for custom allocator types
Ensures proper compilation by including stdlib.h for size_t and other standard types used in the custom allocator function signatures.
1 parent 729b43a commit ce3caef

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

include/jose/cfg.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include <stddef.h>
2727
#include <stdarg.h>
2828
#include <stdint.h>
29+
#include <stdlib.h>
2930

3031
enum {
3132
_JOSE_CFG_ERR_BASE = 0x1053000000000000ULL,

0 commit comments

Comments
 (0)