Index: fusl/include/sys/times.h |
diff --git a/fusl/include/sys/times.h b/fusl/include/sys/times.h |
index cc55e573fd4b87d1a949423e5c71cc4e2b12b552..de45d55f244ebad83c40d7b3949d1bb97d2e67d1 100644 |
--- a/fusl/include/sys/times.h |
+++ b/fusl/include/sys/times.h |
@@ -1,5 +1,5 @@ |
-#ifndef _SYS_TIMES_H |
-#define _SYS_TIMES_H |
+#ifndef _SYS_TIMES_H |
+#define _SYS_TIMES_H |
#ifdef __cplusplus |
extern "C" { |
@@ -8,19 +8,17 @@ extern "C" { |
#define __NEED_clock_t |
#include <bits/alltypes.h> |
-struct tms |
-{ |
- clock_t tms_utime; |
- clock_t tms_stime; |
- clock_t tms_cutime; |
- clock_t tms_cstime; |
+struct tms { |
+ clock_t tms_utime; |
+ clock_t tms_stime; |
+ clock_t tms_cutime; |
+ clock_t tms_cstime; |
}; |
-clock_t times (struct tms *); |
+clock_t times(struct tms*); |
#ifdef __cplusplus |
} |
#endif |
#endif |
- |