diff options
Diffstat (limited to 'libgloss/m68k/atari/atari-wait.c')
-rw-r--r-- | libgloss/m68k/atari/atari-wait.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libgloss/m68k/atari/atari-wait.c b/libgloss/m68k/atari/atari-wait.c new file mode 100644 index 0000000..9464193 --- /dev/null +++ b/libgloss/m68k/atari/atari-wait.c @@ -0,0 +1,16 @@ +/* + Copyright (C) 2025 Mikael Hildenborg + SPDX-License-Identifier: BSD-2-Clause +*/ + +#include "config.h" +#include <errno.h> +#include "libnosys/warning.h" + +int wait(int *status) +{ + errno = ENOSYS; + return -1; +} + +stub_warning(wait) |