fix: add missing #include <stdlib.h> in jni_bridge.c for malloc/free

https://claude.ai/code/session_011KVZhDcV2G7idNWEBz12GY
This commit is contained in:
Claude
2026-04-11 14:49:04 +00:00
parent 40a51d855c
commit 61e8471c37
+1
View File
@@ -9,6 +9,7 @@
#include <jni.h>
#include "secp256k1_c.h"
#include <string.h>
#include <stdlib.h>
#define JNI_CLASS "com/vitorpamplona/quartz/utils/Secp256k1C"