uts.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_UTS_H
  2. #define _LINUX_UTS_H
  3. /*
  4.  * Defines for what uname() should return 
  5.  */
  6. #ifndef UTS_SYSNAME
  7. #define UTS_SYSNAME "Linux"
  8. #endif
  9. #ifndef UTS_MACHINE
  10. #define UTS_MACHINE "unknown"
  11. #endif
  12. #ifndef UTS_NODENAME
  13. #define UTS_NODENAME "(none)" /* set by sethostname() */
  14. #endif
  15. #ifndef UTS_DOMAINNAME
  16. #define UTS_DOMAINNAME "(none)" /* set by setdomainname() */
  17. #endif
  18. #endif