diff options
Diffstat (limited to 'c/util.h')
-rw-r--r-- | c/util.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -4,6 +4,12 @@ #include <algorithm> #include <cstring> #include <memory> +#include <SWI-Prolog.h> +#include <windows.h> + +#define CAT(a, b) a##b +#define APPLY(a, ...) a(__VA_ARGS__) +#define UNUSED APPLY(CAT, unused_, __COUNTER__) /* Format static wide string. */ template<size_t N, typename... T> |