dos_compilers/Mix Power C v22/SYS/TIMEB.H

18 lines
367 B
C++
Raw Normal View History

2024-07-02 17:33:48 +02:00
/*$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 >>> */