1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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)