Fix include for ssize_t

This commit is contained in:
Bert Münnich 2011-09-26 22:01:27 +02:00
parent d721d8453e
commit 0a91ede86c

1
util.h
View File

@ -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))