logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

utsname.h (372B)


  1. #ifndef _SYS_UTSNAME_H
  2. #define _SYS_UTSNAME_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <features.h>
  7. struct utsname {
  8. char sysname[65];
  9. char nodename[65];
  10. char release[65];
  11. char version[65];
  12. char machine[65];
  13. #ifdef _GNU_SOURCE
  14. char domainname[65];
  15. #else
  16. char __domainname[65];
  17. #endif
  18. };
  19. int uname (struct utsname *);
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #endif