mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
27 lines
289 B
C
27 lines
289 B
C
|
#ifndef SYS_TIMEB_H
|
||
|
#define SYS_TIMEB_H 1
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
struct _timeb {
|
||
|
time_t time;
|
||
|
unsigned short millitm;
|
||
|
short timezone;
|
||
|
short dstflag;
|
||
|
};
|
||
|
|
||
|
#define timeb _timeb
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
int ftime(struct timeb *tp);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
};
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|