Merge branch 'netbsd' into 'main'

Initial NetBSD support

See merge request wayland/wayland!258
This commit is contained in:
nia 2024-02-21 15:44:32 +00:00
commit 60c198be6c
4 changed files with 32 additions and 7 deletions

View file

@ -308,6 +308,13 @@ is_debugger_attached(void)
return rc;
}
#else
static int
is_debugger_attached(void)
{
/* 0=debugger can't be determined */
return 0;
}
#endif
int main(int argc, char *argv[])