You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
315 B
17 lines
315 B
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2019 Petr Vorel <petr.vorel@gmail.com>
|
|
*/
|
|
|
|
#ifdef HAVE_SYS_UTSNAME_H
|
|
# include <sys/utsname.h>
|
|
#endif
|
|
|
|
#ifndef _UTSNAME_LENGTH
|
|
# define _UTSNAME_LENGTH 65
|
|
#endif
|
|
|
|
#ifndef _UTSNAME_DOMAIN_LENGTH
|
|
# define _UTSNAME_DOMAIN_LENGTH _UTSNAME_LENGTH
|
|
#endif
|