Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(321)

Side by Side Diff: fusl/include/sys/utsname.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #ifndef»_SYS_UTSNAME_H 1 #ifndef _SYS_UTSNAME_H
2 #define»_SYS_UTSNAME_H 2 #define _SYS_UTSNAME_H
3 3
4 #ifdef __cplusplus 4 #ifdef __cplusplus
5 extern "C" { 5 extern "C" {
6 #endif 6 #endif
7 7
8 #include <features.h> 8 #include <features.h>
9 9
10 struct utsname 10 struct utsname {
11 { 11 char sysname[65];
12 » char sysname[65]; 12 char nodename[65];
13 » char nodename[65]; 13 char release[65];
14 » char release[65]; 14 char version[65];
15 » char version[65]; 15 char machine[65];
16 » char machine[65];
17 #ifdef _GNU_SOURCE 16 #ifdef _GNU_SOURCE
18 » char domainname[65]; 17 char domainname[65];
19 #else 18 #else
20 » char __domainname[65]; 19 char __domainname[65];
21 #endif 20 #endif
22 }; 21 };
23 22
24 int uname (struct utsname *); 23 int uname(struct utsname*);
25 24
26 #ifdef __cplusplus 25 #ifdef __cplusplus
27 } 26 }
28 #endif 27 #endif
29 28
30 #endif 29 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698