From 0a91ede86c370aacb2b3a91e411f1f05349c12f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bert=20M=C3=BCnnich?= Date: Mon, 26 Sep 2011 22:01:27 +0200 Subject: [PATCH] Fix include for ssize_t --- util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/util.h b/util.h index 68e534e..ff749a5 100644 --- a/util.h +++ b/util.h @@ -22,6 +22,7 @@ #include #include #include +#include #ifndef MIN #define MIN(a,b) ((a) < (b) ? (a) : (b))