diff options
Diffstat (limited to 'include/sys/timeb.h')
-rw-r--r-- | include/sys/timeb.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/include/sys/timeb.h b/include/sys/timeb.h index 52e5486b3..dbdbf45a8 100644 --- a/include/sys/timeb.h +++ b/include/sys/timeb.h @@ -29,16 +29,17 @@ __BEGIN_DECLS /* Structure returned by the `ftime' function. */ -struct timeb { - time_t time; /* Seconds since epoch, as from `time'. */ - unsigned short int millitm; /* Additional milliseconds. */ - short int timezone; /* Minutes west of GMT. */ - short int dstflag; /* Nonzero if Daylight Savings Time used. */ -}; +struct timeb + { + time_t time; /* Seconds since epoch, as from `time'. */ + unsigned short int millitm; /* Additional milliseconds. */ + short int timezone; /* Minutes west of GMT. */ + short int dstflag; /* Nonzero if Daylight Savings Time used. */ + }; /* Fill in TIMEBUF with information about the current time. */ -extern int ftime(struct timeb *__timebuf); +extern int ftime (struct timeb *__timebuf); __END_DECLS |