sys/timeb.h
#ifndef _SYS_TIMEB_H
#define _SYS_TIMEB_H 1
#include
#define __need_time_t
#include
__BEGIN_DECLS
struct timeb
{
time_t time;
unsigned short int millitm;
short int timezone;
short int dstflag;
};
extern int ftime (struct timeb *__timebuf);
__END_DECLS
#endif
|
|