From 3b8ca164ab17a0a65d35b2689d647b6dfc448ed3 Mon Sep 17 00:00:00 2001 From: Bjorn Andersson Date: Sat, 10 Feb 2007 23:21:12 +0000 Subject: [PATCH] readded some includes to make it build on openbsd --- src/common.c | 1 + src/common.h | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/common.c b/src/common.c index 6b38ff2..2482084 100644 --- a/src/common.c +++ b/src/common.c @@ -15,6 +15,7 @@ #include #include +#include #ifdef DARWIN #include #endif diff --git a/src/common.h b/src/common.h index 97787d0..b58e7d2 100644 --- a/src/common.h +++ b/src/common.h @@ -17,6 +17,9 @@ #ifndef __COMMON_H__ #define __COMMON_H__ +#include +#include + #ifndef MIN #define MIN(a,b) ((a)<(b)?(a):(b)) #endif