Loading...
#ifndef _LINUX_CONFIG_H #define _LINUX_CONFIG_H #include <linux/autoconf.h> /* * Defines for what uname() should return */ #ifndef UTS_SYSNAME #define UTS_SYSNAME "Linux" #endif #ifndef UTS_MACHINE #define UTS_MACHINE "unknown" #endif #ifndef UTS_NODENAME #define UTS_NODENAME "(none)" /* set by sethostname() */ #endif #ifndef UTS_DOMAINNAME #define UTS_DOMAINNAME "(none)" /* set by setdomainname() */ #endif /* * The definitions for UTS_RELEASE and UTS_VERSION are now defined * in linux/version.h, and should only be used by linux/version.c */ #endif |