2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2021-08-14 18:55:39 +02:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2018-10-26 14:56:21 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2021-08-14 18:55:39 +02:00
|
|
|
#include <Kernel/API/POSIX/sys/utsname.h>
|
2022-08-16 01:57:43 +10:00
|
|
|
#include <sys/cdefs.h>
|
2018-10-26 14:56:21 +02:00
|
|
|
|
2018-10-31 02:09:11 +01:00
|
|
|
__BEGIN_DECLS
|
2018-10-26 14:56:21 +02:00
|
|
|
|
|
|
|
|
int uname(struct utsname*);
|
|
|
|
|
|
2018-10-31 02:09:11 +01:00
|
|
|
__END_DECLS
|