summaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorBert Münnich <ber.t@gmx.com>2011-09-26 22:01:27 +0200
committerBert Münnich <ber.t@gmx.com>2011-09-26 22:01:27 +0200
commit0a91ede86c370aacb2b3a91e411f1f05349c12f6 (patch)
tree7cadcb55e14aae36177b01dc097a7c4915074c26 /util.h
parentd721d8453e6c0ff7112e8228eb58aa438d1f7f1a (diff)
downloadnsxiv-0a91ede86c370aacb2b3a91e411f1f05349c12f6.tar.zst
Fix include for ssize_t
Diffstat (limited to 'util.h')
-rw-r--r--util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/util.h b/util.h
index 68e534e..ff749a5 100644
--- a/util.h
+++ b/util.h
@@ -22,6 +22,7 @@
#include <stdio.h>
#include <stdarg.h>
#include <dirent.h>
+#include <sys/types.h>
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))