blob: 6cd05735705bed636ef520c8378c7c38c795729c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _LINUX_UTS_H
#define _LINUX_UTS_H
#ifndef UTS_SYSNAME
#define UTS_SYSNAME "Linux"
#endif
#ifndef UTS_NODENAME
#define UTS_NODENAME CONFIG_DEFAULT_HOSTNAME
#endif
#ifndef UTS_DOMAINNAME
#define UTS_DOMAINNAME "(none)"
#endif
#endif
|