Index: fusl/src/legacy/utmpx.c |
diff --git a/fusl/src/legacy/utmpx.c b/fusl/src/legacy/utmpx.c |
index e2843c94af41271e482732fa31a4f9e8d6c363d5..a3e6f8167310fbedbd95240be37f32b403c1670f 100644 |
--- a/fusl/src/legacy/utmpx.c |
+++ b/fusl/src/legacy/utmpx.c |
@@ -3,42 +3,31 @@ |
#include <errno.h> |
#include "libc.h" |
-void endutxent(void) |
-{ |
-} |
+void endutxent(void) {} |
-void setutxent(void) |
-{ |
-} |
+void setutxent(void) {} |
-struct utmpx *getutxent(void) |
-{ |
- return NULL; |
+struct utmpx* getutxent(void) { |
+ return NULL; |
} |
-struct utmpx *getutxid(const struct utmpx *ut) |
-{ |
- return NULL; |
+struct utmpx* getutxid(const struct utmpx* ut) { |
+ return NULL; |
} |
-struct utmpx *getutxline(const struct utmpx *ut) |
-{ |
- return NULL; |
+struct utmpx* getutxline(const struct utmpx* ut) { |
+ return NULL; |
} |
-struct utmpx *pututxline(const struct utmpx *ut) |
-{ |
- return NULL; |
+struct utmpx* pututxline(const struct utmpx* ut) { |
+ return NULL; |
} |
-void updwtmpx(const char *f, const struct utmpx *u) |
-{ |
-} |
+void updwtmpx(const char* f, const struct utmpx* u) {} |
-int __utmpxname(const char *f) |
-{ |
- errno = ENOTSUP; |
- return -1; |
+int __utmpxname(const char* f) { |
+ errno = ENOTSUP; |
+ return -1; |
} |
weak_alias(endutxent, endutent); |