X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2Fcommon.h;h=127503212901e3a8b21987a7a8fdad2ffefb0c14;hb=1a5cb99a6e794b4d51815aad67a73ae3f3c5b659;hp=e5bcdbdd6776fe50244fc149ae396e16fa485397;hpb=ab0ae45f79caaae86b36f8230f9399138c9e73bc;p=matches%2FMCTX3420.git diff --git a/server/common.h b/server/common.h index e5bcdbd..1275032 100644 --- a/server/common.h +++ b/server/common.h @@ -1,6 +1,6 @@ /** * @file common.h - * @purpose Common header includes + * @brief Common header includes */ #ifndef _COMMON_H @@ -8,6 +8,10 @@ #define _POSIX_C_SOURCE 200809L #define _BSD_SOURCE +#define _XOPEN_SOURCE 600 + +/** The current API version **/ +#define API_VERSION 0 #include #include @@ -17,5 +21,11 @@ #include #include #include +#include +#include + +#include "log.h" +#include "fastcgi.h" +#include "thread.h" #endif //_COMMON_H