tests: Implement fallback is_debugger_attached() that returns undetermined

Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
This commit is contained in:
Jeremy Huddleston Sequoia 2023-01-27 17:36:44 -08:00
parent a200085120
commit 91f428c80b

View file

@ -308,6 +308,12 @@ is_debugger_attached(void)
return rc;
}
#else
static int
is_debugger_attached(void)
{
return 0;
}
#endif
int main(int argc, char *argv[])