From: Fredrik Tolf Date: Tue, 24 Aug 2010 14:49:35 +0000 (+0200) Subject: Include sys/types in utils.h X-Git-Tag: 0.1~91 X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=04883ca44a79a593ae1dc03d2bd231c8c66eb905 Include sys/types in utils.h --- diff --git a/lib/utils.h b/lib/utils.h index 5aae92c..be94c24 100644 --- a/lib/utils.h +++ b/lib/utils.h @@ -2,6 +2,7 @@ #define _UTILS_H #include +#include #define max(a, b) (((b) > (a))?(b):(a)) #define min(a, b) (((b) < (a))?(b):(a))