From befa5866ee30d09c0c96e88af2eabff5911342ea Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 3 Jul 2016 14:40:11 -0400 Subject: make brace placement in public header struct definitions consistent placing the opening brace on the same line as the struct keyword/tag is the style I prefer and seems to be the prevailing practice in more recent additions. these changes were generated by the command: find include/ arch/*/bits -name '*.h' \ -exec sed -i '/^struct [^;{]*$/{N;s/\n/ /;}' {} + and subsequently checked by hand to ensure that the regex did not pick up any false positives. --- arch/powerpc64/bits/ipc.h | 3 +-- arch/powerpc64/bits/msg.h | 3 +-- arch/powerpc64/bits/shm.h | 3 +-- arch/powerpc64/bits/socket.h | 6 ++---- arch/powerpc64/bits/stat.h | 3 +-- arch/powerpc64/bits/termios.h | 3 +-- 6 files changed, 7 insertions(+), 14 deletions(-) (limited to 'arch/powerpc64/bits') diff --git a/arch/powerpc64/bits/ipc.h b/arch/powerpc64/bits/ipc.h index e1bfe2f5..3f2ede07 100644 --- a/arch/powerpc64/bits/ipc.h +++ b/arch/powerpc64/bits/ipc.h @@ -1,5 +1,4 @@ -struct ipc_perm -{ +struct ipc_perm { key_t __ipc_perm_key; uid_t uid; gid_t gid; diff --git a/arch/powerpc64/bits/msg.h b/arch/powerpc64/bits/msg.h index badcf168..2e23ca27 100644 --- a/arch/powerpc64/bits/msg.h +++ b/arch/powerpc64/bits/msg.h @@ -1,5 +1,4 @@ -struct msqid_ds -{ +struct msqid_ds { struct ipc_perm msg_perm; time_t msg_stime; time_t msg_rtime; diff --git a/arch/powerpc64/bits/shm.h b/arch/powerpc64/bits/shm.h index 91268516..8108c3a8 100644 --- a/arch/powerpc64/bits/shm.h +++ b/arch/powerpc64/bits/shm.h @@ -1,7 +1,6 @@ #define SHMLBA 4096 -struct shmid_ds -{ +struct shmid_ds { struct ipc_perm shm_perm; time_t shm_atime; time_t shm_dtime; diff --git a/arch/powerpc64/bits/socket.h b/arch/powerpc64/bits/socket.h index ec3590c6..2f748ae8 100644 --- a/arch/powerpc64/bits/socket.h +++ b/arch/powerpc64/bits/socket.h @@ -1,7 +1,6 @@ #include -struct msghdr -{ +struct msghdr { void *msg_name; socklen_t msg_namelen; struct iovec *msg_iov; @@ -21,8 +20,7 @@ struct msghdr int msg_flags; }; -struct cmsghdr -{ +struct cmsghdr { #if __BYTE_ORDER == __BIG_ENDIAN int __pad1; socklen_t cmsg_len; diff --git a/arch/powerpc64/bits/stat.h b/arch/powerpc64/bits/stat.h index 8172cff7..320b49bb 100644 --- a/arch/powerpc64/bits/stat.h +++ b/arch/powerpc64/bits/stat.h @@ -1,5 +1,4 @@ -struct stat -{ +struct stat { dev_t st_dev; ino_t st_ino; nlink_t st_nlink; diff --git a/arch/powerpc64/bits/termios.h b/arch/powerpc64/bits/termios.h index 7f67baf4..0b09630c 100644 --- a/arch/powerpc64/bits/termios.h +++ b/arch/powerpc64/bits/termios.h @@ -1,7 +1,6 @@ #undef NCCS #define NCCS 19 -struct termios -{ +struct termios { tcflag_t c_iflag; tcflag_t c_oflag; tcflag_t c_cflag; -- cgit v1.2.1