ladybird/Userland/Libraries/LibC/utsname.cpp

19 lines
308 B
C++
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
2019-06-07 11:49:03 +02:00
#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);
}
}