| Index: fusl/include/sys/utsname.h
|
| diff --git a/fusl/include/sys/utsname.h b/fusl/include/sys/utsname.h
|
| index 6b9ea970970dff0571d88111b58c5ecea86d8d12..2a5762ed04ba5d676c8181df2979ff78b07c16eb 100644
|
| --- a/fusl/include/sys/utsname.h
|
| +++ b/fusl/include/sys/utsname.h
|
| @@ -1,5 +1,5 @@
|
| -#ifndef _SYS_UTSNAME_H
|
| -#define _SYS_UTSNAME_H
|
| +#ifndef _SYS_UTSNAME_H
|
| +#define _SYS_UTSNAME_H
|
|
|
| #ifdef __cplusplus
|
| extern "C" {
|
| @@ -7,21 +7,20 @@ extern "C" {
|
|
|
| #include <features.h>
|
|
|
| -struct utsname
|
| -{
|
| - char sysname[65];
|
| - char nodename[65];
|
| - char release[65];
|
| - char version[65];
|
| - char machine[65];
|
| +struct utsname {
|
| + char sysname[65];
|
| + char nodename[65];
|
| + char release[65];
|
| + char version[65];
|
| + char machine[65];
|
| #ifdef _GNU_SOURCE
|
| - char domainname[65];
|
| + char domainname[65];
|
| #else
|
| - char __domainname[65];
|
| + char __domainname[65];
|
| #endif
|
| };
|
|
|
| -int uname (struct utsname *);
|
| +int uname(struct utsname*);
|
|
|
| #ifdef __cplusplus
|
| }
|
|
|