• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2019 Petr Vorel <petr.vorel@gmail.com>
4  */
5 
6 #ifndef LAPI_UTSNAME_H__
7 #define LAPI_UTSNAME_H__
8 
9 #ifdef HAVE_SYS_UTSNAME_H
10 # include <sys/utsname.h>
11 #endif
12 
13 #ifndef _UTSNAME_LENGTH
14 # define _UTSNAME_LENGTH 65
15 #endif
16 
17 #ifndef _UTSNAME_DOMAIN_LENGTH
18 # define _UTSNAME_DOMAIN_LENGTH _UTSNAME_LENGTH
19 #endif
20 
21 #endif /* LAPI_UTSNAME_H__ */
22