From 2a009957b940261372a438504db082dd7f5f2a55 Mon Sep 17 00:00:00 2001 From: edoapra Date: Mon, 14 Oct 2024 16:38:34 -0700 Subject: [PATCH] fix for undeclared function syscall --- comex/src-ofi/log.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/comex/src-ofi/log.h b/comex/src-ofi/log.h index 048e6a77c..74390042b 100644 --- a/comex/src-ofi/log.h +++ b/comex/src-ofi/log.h @@ -13,6 +13,12 @@ #include #include #include +#ifndef __USE_MISC +#define __USE_MISC +#endif +#ifndef __USE_XOPEN2K +#define __USE_XOPEN2K +#endif #include #include "env.h"