03360f3bb7
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1741 a95241bf-73f2-0310-859d-f6bbb57e9c96
27 lines
471 B
C
27 lines
471 B
C
#ifndef _SYS_TIMEB_H
|
|
#define _SYS_TIMEB_H
|
|
/*
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
*/
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
struct timeb {
|
|
time_t time; /* seconds of current time */
|
|
unsigned short millitm; /* milliseconds of current time */
|
|
short timezone; /* timezone difference to GMT in minutes */
|
|
short dstflag; /* daylight saving flag */
|
|
};
|
|
|
|
|
|
extern
|
|
#ifdef __cplusplus
|
|
"C"
|
|
#endif
|
|
int ftime(struct timeb *timeb);
|
|
/* legacy */
|
|
|
|
#endif /* _SYS_TIMEB_H */
|