Include sys/types in utils.h
authorFredrik Tolf <fredrik@dolda2000.com>
Tue, 24 Aug 2010 14:49:35 +0000 (16:49 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Tue, 24 Aug 2010 14:49:35 +0000 (16:49 +0200)
lib/utils.h

index 5aae92c..be94c24 100644 (file)
@@ -2,6 +2,7 @@
 #define _UTILS_H
 
 #include <stdarg.h>
+#include <sys/types.h>
 
 #define max(a, b) (((b) > (a))?(b):(a))
 #define min(a, b) (((b) < (a))?(b):(a))