# HG changeset patch # User Tassilo Philipp # Date 1664285685 -7200 # Node ID b1f2b574d772d48b025340d0f0010c56e9b74bf6 # Parent 9d0eefb0e0f05b685ed5ecfe67eb9ddeb9810fa5 - test/syscall: minix include fix diff -r 9d0eefb0e0f0 -r b1f2b574d772 test/callf/main.c --- a/test/callf/main.c Thu Sep 22 23:15:51 2022 +0200 +++ b/test/callf/main.c Tue Sep 27 15:34:45 2022 +0200 @@ -32,8 +32,10 @@ #include "../common/platformInit.c" /* Impl. for functions only used in this translation unit */ #include -#if defined(DC_UNIX) && !defined(DC__OS_BeOS) -#include +#if defined(DC__Feature_Syscall) +# if defined(DC_UNIX) && !defined(DC__OS_BeOS) && !defined(DC__OS_Minix) +# include +# endif #endif