summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-12-07 16:16:44 -0500
committerRich Felker <dalias@aerifal.cx>2012-12-07 16:16:44 -0500
commit03b0f13e908eb61c1218db5e4478f0162fa98f5a (patch)
tree07e87b7f5cdd67b128c845a4936a335092e2d57b /src
parent2ad9cf52eb9fea12a19bcf893828e1361a0b6546 (diff)
downloadmusl-03b0f13e908eb61c1218db5e4478f0162fa98f5a.tar.gz
fix trailing whitespace issues that crept in here and there
Diffstat (limited to 'src')
-rw-r--r--src/internal/libc.h2
-rw-r--r--src/math/sincosf.c2
-rw-r--r--src/misc/arch_prctl.c2
-rw-r--r--src/misc/personality.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/internal/libc.h b/src/internal/libc.h
index 5ab4e679..50891148 100644
--- a/src/internal/libc.h
+++ b/src/internal/libc.h
@@ -27,7 +27,7 @@ extern size_t __hwcap;
#if __GNUC__ < 4
#define BROKEN_VISIBILITY 1
#endif
-#define ATTR_LIBC_VISIBILITY __attribute__((visibility("hidden")))
+#define ATTR_LIBC_VISIBILITY __attribute__((visibility("hidden")))
#else
#define ATTR_LIBC_VISIBILITY
#endif
diff --git a/src/math/sincosf.c b/src/math/sincosf.c
index fede5f23..5e3b9a41 100644
--- a/src/math/sincosf.c
+++ b/src/math/sincosf.c
@@ -48,7 +48,7 @@ void sincosf(float x, float *sin, float *cos)
}
/* |x| ~<= 5*pi/4 */
- if (ix <= 0x407b53d1) {
+ if (ix <= 0x407b53d1) {
if (ix <= 0x4016cbe3) { /* |x| ~<= 3pi/4 */
if (hx < 0x80000000) {
*sin = __cosdf(x - s1pio2);
diff --git a/src/misc/arch_prctl.c b/src/misc/arch_prctl.c
index 2868d668..a6ab2644 100644
--- a/src/misc/arch_prctl.c
+++ b/src/misc/arch_prctl.c
@@ -3,7 +3,7 @@
#include "libc.h"
int __arch_prctl(int code, unsigned long addr)
{
- return syscall(SYS_arch_prctl, code, addr);
+ return syscall(SYS_arch_prctl, code, addr);
}
weak_alias(__arch_prctl, arch_prctl);
#endif
diff --git a/src/misc/personality.c b/src/misc/personality.c
index 6e13a77d..06851f58 100644
--- a/src/misc/personality.c
+++ b/src/misc/personality.c
@@ -2,6 +2,6 @@
#ifdef SYS_personality
int personality(unsigned long persona)
{
- return syscall(SYS_personality, persona);
+ return syscall(SYS_personality, persona);
}
#endif