about summary refs log tree commit diff
path: root/arch/powerpc
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2016-07-03 14:40:11 -0400
committerRich Felker <dalias@aerifal.cx>2016-07-03 15:02:25 -0400
commitbefa5866ee30d09c0c96e88af2eabff5911342ea (patch)
treea72045d740e0a4b204ef6d742f7f3a3ca12e6c0e /arch/powerpc
parent093288dcb37a30c634b0a00eb7e2a0dbe72ebf95 (diff)
downloadmusl-befa5866ee30d09c0c96e88af2eabff5911342ea.tar.gz
musl-befa5866ee30d09c0c96e88af2eabff5911342ea.tar.xz
musl-befa5866ee30d09c0c96e88af2eabff5911342ea.zip
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.
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/bits/ipc.h3
-rw-r--r--arch/powerpc/bits/msg.h3
-rw-r--r--arch/powerpc/bits/shm.h3
-rw-r--r--arch/powerpc/bits/signal.h3
-rw-r--r--arch/powerpc/bits/socket.h6
-rw-r--r--arch/powerpc/bits/stat.h3
-rw-r--r--arch/powerpc/bits/termios.h3
7 files changed, 8 insertions, 16 deletions
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;