Include sys/types in utils.h
[ashd.git] / 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))