utsname.h 372 B

1234567891011121314151617181920212223242526272829
  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