X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2Fcommon.h;h=43bb8bd67e2ea0eb45182b9f25c2a3123c86b830;hb=3f7f78dd3e12308da13213dcedc92bbcb3ecb51e;hp=a690149a1a175b330435dcf82fa990b471d5b699;hpb=bbd64b3c32d79d247c7535693aafa20a3baba6b8;p=matches%2FMCTX3420.git diff --git a/server/common.h b/server/common.h index a690149..43bb8bd 100644 --- a/server/common.h +++ b/server/common.h @@ -26,6 +26,7 @@ #include "log.h" #include "fastcgi.h" +#include "control.h" /**Converts a timeval to a double**/ #define TIMEVAL_TO_DOUBLE(tv) ((tv).tv_sec + 1e-6 * ((tv).tv_usec)) @@ -33,4 +34,6 @@ #define TIMEVAL_DIFF(tv1, tv2) ((tv1).tv_sec - (tv2).tv_sec + 1e-6 * ((tv1).tv_usec - (tv2).tv_usec)) + + #endif //_COMMON_H