summaryrefslogtreecommitdiff
path: root/include/sys
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2016-07-03 16:19:28 -0400
committerRich Felker <dalias@aerifal.cx>2016-07-03 16:19:28 -0400
commitee3f0c551669ca1c61abac0888f93a27b0b17856 (patch)
tree265179f58812804155d431018cb7453592e78228 /include/sys
parent3c3b09980d792ea8393f0a3865735b2ff5ecc765 (diff)
downloadmusl-ee3f0c551669ca1c61abac0888f93a27b0b17856.tar.gz
make brace placement in public header typedef'd structs consistent
commit befa5866ee30d09c0c96e88af2eabff5911342ea performed this change for struct definitions that did not also involve typedef, but omitted the latter.
Diffstat (limited to 'include/sys')
-rw-r--r--include/sys/select.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/sys/select.h b/include/sys/select.h
index e25257d2..d34cbf10 100644
--- a/include/sys/select.h
+++ b/include/sys/select.h
@@ -19,8 +19,7 @@ extern "C" {
typedef unsigned long fd_mask;
-typedef struct
-{
+typedef struct {
unsigned long fds_bits[FD_SETSIZE / 8 / sizeof(long)];
} fd_set;