dos_compilers/Mix Power C v22/SYS/TIMEB.H
2024-07-02 08:33:48 -07:00

18 lines
367 B
C

/*$no list*//*$no trace <<< timeb.h >>> */
/* Copyright (c) Mix Software 1988 */
#define time_t long
#if !Defined(struct timeb)
struct timeb {
time_t time;
unsigned short millitm;
short timezone;
short dstflag;
};
#endif
void ftime(struct timeb *timeptr);
/*$list*//*$trace <<< timeb.h >>> */