From b6adca8ebb12962374a9cd1f6b543186f0cf6a40 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 18 Nov 2014 23:15:36 +0000 Subject: [PATCH] Bugfix: Add missing include for ssize_t --- base58.c | 1 + configure.ac | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/base58.c b/base58.c index 12bf195..913d581 100644 --- a/base58.c +++ b/base58.c @@ -15,6 +15,7 @@ #include #include #include +#include #include "libbase58.h" diff --git a/configure.ac b/configure.ac index d5212d3..b5f5caa 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ dnl * under the terms of the standard MIT license. See COPYING for more details AC_INIT( [libbase58], - [0.1.2], + [0.1.3], [luke_libbase58@dashjr.org], [libbase58]) AC_CONFIG_AUX_DIR([.])