/* (-lgl * Mark Williams C for the Atari ST Version 1.0 * Copyright (c) 1984-1986 by Mark Williams Company, Chicago. * All rights reserved. May not be copied without permission. -lgl) */ /* * Time buffer. */ #ifndef TIMEB_H #define TIMEB_H #include struct timeb { time_t time; /* Time since 1970 */ unsigned short millitm; /* Milliseconds */ short timezone; /* Time zone */ short dstflag; /* Daylight saving time applies */ }; #endif