Include stdio.h and stdlib.h explicitly in secp256k1.c

This commit is contained in:
Tim Ruffing 2019-03-04 16:11:35 +01:00
parent 9a949e5f2b
commit 08e2e19f24

View File

@ -44,6 +44,8 @@
} while(0)
#ifndef USE_EXTERNAL_DEFAULT_CALLBACKS
#include <stdlib.h>
#include <stdio.h>
static void default_illegal_callback_fn(const char* str, void* data) {
(void)data;
fprintf(stderr, "[libsecp256k1] illegal argument: %s\n", str);