123456789101112131415161718 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <errno.h>
- #include <sys/utsname.h>
- #include <syscall.h>
- extern "C" {
- int uname(struct utsname* buf)
- {
- int rc = syscall(SC_uname, buf);
- __RETURN_WITH_ERRNO(rc, rc, -1);
- }
- }
|