Index: fusl/src/thread/pthread_attr_init.c |
diff --git a/fusl/src/thread/pthread_attr_init.c b/fusl/src/thread/pthread_attr_init.c |
index 969e0a3805e9299070eddd8a2b43cf7d6be160b1..b956ee568f4c4d73fda600f69712ec3a67993b3a 100644 |
--- a/fusl/src/thread/pthread_attr_init.c |
+++ b/fusl/src/thread/pthread_attr_init.c |
@@ -1,7 +1,6 @@ |
#include "pthread_impl.h" |
-int pthread_attr_init(pthread_attr_t *a) |
-{ |
- *a = (pthread_attr_t){0}; |
- return 0; |
+int pthread_attr_init(pthread_attr_t* a) { |
+ *a = (pthread_attr_t){0}; |
+ return 0; |
} |