diff options
author | Rich Felker <dalias@aerifal.cx> | 2016-07-03 14:40:11 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-07-03 15:02:25 -0400 |
commit | befa5866ee30d09c0c96e88af2eabff5911342ea (patch) | |
tree | a72045d740e0a4b204ef6d742f7f3a3ca12e6c0e /arch/aarch64 | |
parent | 093288dcb37a30c634b0a00eb7e2a0dbe72ebf95 (diff) | |
download | musl-befa5866ee30d09c0c96e88af2eabff5911342ea.tar.gz musl-befa5866ee30d09c0c96e88af2eabff5911342ea.tar.bz2 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/aarch64')
-rw-r--r-- | arch/aarch64/bits/ipc.h | 3 | ||||
-rw-r--r-- | arch/aarch64/bits/msg.h | 3 | ||||
-rw-r--r-- | arch/aarch64/bits/shm.h | 3 | ||||
-rw-r--r-- | arch/aarch64/bits/socket.h | 6 |
4 files changed, 5 insertions, 10 deletions
diff --git a/arch/aarch64/bits/ipc.h b/arch/aarch64/bits/ipc.h index 9a47bc7a..6f3328a8 100644 --- a/arch/aarch64/bits/ipc.h +++ b/arch/aarch64/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/aarch64/bits/msg.h b/arch/aarch64/bits/msg.h index 0135a08d..641e1703 100644 --- a/arch/aarch64/bits/msg.h +++ b/arch/aarch64/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/aarch64/bits/shm.h b/arch/aarch64/bits/shm.h index 4c3c9fb7..8d193781 100644 --- a/arch/aarch64/bits/shm.h +++ b/arch/aarch64/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/aarch64/bits/socket.h b/arch/aarch64/bits/socket.h index b3fe643a..c11677e9 100644 --- a/arch/aarch64/bits/socket.h +++ b/arch/aarch64/bits/socket.h @@ -1,7 +1,6 @@ #include <endian.h> -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; |