home *** CD-ROM | disk | FTP | other *** search
- /*
- * timeb.h -- non-ANSI
- *
- * Definitions needed by the ftime function.
- *
- * Copyright (c) 1990, MetaWare Incorporated
- */
-
- #ifndef _TIMEB_H
- #define _TIMEB_H
-
- #ifndef _TIME_T_DEFINED
- #define _TIME_T_DEFINED
- typedef long time_t;
- #endif
-
- #ifndef _TIMEB_DEFINED_
- #define _TIMEB_DEFINED_
- #ifdef __HIGHC__
- #define _timeb timeb
- #endif
- struct _timeb {
- time_t time;
- unsigned short millitm;
- short timezone;
- short dstflag;
- };
- #endif
-
- extern void _ftime(struct _timeb * __tptr);
-
- #ifdef __HIGHC__
-
-
- extern void ftime(struct timeb * __tptr);
-
- #endif /* __HIGHC__ */
-
- #endif /* _TIMEB_H */
-