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/powerpc/bits/ipc.h | 3 +-- arch/powerpc/bits/msg.h | 3 +-- arch/powerpc/bits/shm.h | 3 +-- arch/powerpc/bits/signal.h | 3 +-- arch/powerpc/bits/socket.h | 6 ++---- arch/powerpc/bits/stat.h | 3 +-- arch/powerpc/bits/termios.h | 3 +-- 7 files changed, 8 insertions(+), 16 deletions(-) (limited to 'arch/powerpc/bits') diff --git a/arch/powerpc/bits/ipc.h b/arch/powerpc/bits/ipc.h index e1bfe2f5..3f2ede07 100644 --- a/arch/powerpc/bits/ipc.h +++ b/arch/powerpc/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/powerpc/bits/msg.h b/arch/powerpc/bits/msg.h index a6b9ad5b..171c11a3 100644 --- a/arch/powerpc/bits/msg.h +++ b/arch/powerpc/bits/msg.h @@ -1,5 +1,4 @@ -struct msqid_ds -{ +struct msqid_ds { struct ipc_perm msg_perm; int __unused1; time_t msg_stime; diff --git a/arch/powerpc/bits/shm.h b/arch/powerpc/bits/shm.h index c698ef34..40e5e8be 100644 --- a/arch/powerpc/bits/shm.h +++ b/arch/powerpc/bits/shm.h @@ -1,7 +1,6 @@ #define SHMLBA 4096 -struct shmid_ds -{ +struct shmid_ds { struct ipc_perm shm_perm; int __unused1; time_t shm_atime; diff --git a/arch/powerpc/bits/signal.h b/arch/powerpc/bits/signal.h index 17a7354f..06efb11c 100644 --- a/arch/powerpc/bits/signal.h +++ b/arch/powerpc/bits/signal.h @@ -23,8 +23,7 @@ typedef struct { unsigned vscr; } vrregset_t; -struct sigcontext -{ +struct sigcontext { unsigned long _unused[4]; int signal; unsigned long handler; diff --git a/arch/powerpc/bits/socket.h b/arch/powerpc/bits/socket.h index 18087919..2fee8777 100644 --- a/arch/powerpc/bits/socket.h +++ b/arch/powerpc/bits/socket.h @@ -1,5 +1,4 @@ -struct msghdr -{ +struct msghdr { void *msg_name; socklen_t msg_namelen; struct iovec *msg_iov; @@ -9,8 +8,7 @@ struct msghdr int msg_flags; }; -struct cmsghdr -{ +struct cmsghdr { socklen_t cmsg_len; int cmsg_level; int cmsg_type; diff --git a/arch/powerpc/bits/stat.h b/arch/powerpc/bits/stat.h index bd524a1a..dcb896fd 100644 --- a/arch/powerpc/bits/stat.h +++ b/arch/powerpc/bits/stat.h @@ -1,8 +1,7 @@ /* copied from kernel definition, but with padding replaced * by the corresponding correctly-sized userspace types. */ -struct stat -{ +struct stat { dev_t st_dev; ino_t st_ino; mode_t st_mode; diff --git a/arch/powerpc/bits/termios.h b/arch/powerpc/bits/termios.h index 7f67baf4..0b09630c 100644 --- a/arch/powerpc/bits/termios.h +++ b/arch/powerpc/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