summaryrefslogtreecommitdiff
path: root/arch/mips
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/mips
parent093288dcb37a30c634b0a00eb7e2a0dbe72ebf95 (diff)
downloadmusl-befa5866ee30d09c0c96e88af2eabff5911342ea.tar.gz
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/mips')
-rw-r--r--arch/mips/bits/msg.h3
-rw-r--r--arch/mips/bits/shm.h3
-rw-r--r--arch/mips/bits/signal.h3
-rw-r--r--arch/mips/bits/socket.h6
-rw-r--r--arch/mips/bits/stat.h3
5 files changed, 6 insertions, 12 deletions
diff --git a/arch/mips/bits/msg.h b/arch/mips/bits/msg.h
index bfe2b3a7..f28aece8 100644
--- a/arch/mips/bits/msg.h
+++ b/arch/mips/bits/msg.h
@@ -1,5 +1,4 @@
-struct msqid_ds
-{
+struct msqid_ds {
struct ipc_perm msg_perm;
#if _MIPSEL || __MIPSEL || __MIPSEL__
time_t msg_stime;
diff --git a/arch/mips/bits/shm.h b/arch/mips/bits/shm.h
index f4b87126..6652d659 100644
--- a/arch/mips/bits/shm.h
+++ b/arch/mips/bits/shm.h
@@ -1,7 +1,6 @@
#define SHMLBA 4096
-struct shmid_ds
-{
+struct shmid_ds {
struct ipc_perm shm_perm;
size_t shm_segsz;
time_t shm_atime;
diff --git a/arch/mips/bits/signal.h b/arch/mips/bits/signal.h
index 889f77e8..db6f22d5 100644
--- a/arch/mips/bits/signal.h
+++ b/arch/mips/bits/signal.h
@@ -17,8 +17,7 @@ typedef struct {
} fp_fregs[32];
} fp_r;
} fpregset_t;
-struct sigcontext
-{
+struct sigcontext {
unsigned sc_regmask, sc_status;
unsigned long long sc_pc, sc_regs[32], sc_fpregs[32];
unsigned sc_ownedfp, sc_fpc_csr, sc_fpc_eir, sc_used_math, sc_dsp;
diff --git a/arch/mips/bits/socket.h b/arch/mips/bits/socket.h
index cc72dcf9..191ebdb5 100644
--- a/arch/mips/bits/socket.h
+++ b/arch/mips/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/mips/bits/stat.h b/arch/mips/bits/stat.h
index c8f9b469..3291a636 100644
--- a/arch/mips/bits/stat.h
+++ b/arch/mips/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;
long __st_padding1[2];
ino_t st_ino;