home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- *
- * $Source: /unixb/home/unixlib/source/unixlib37/src/clib/sys/h/RCS/timeb,v $
- * $Date: 1996/10/30 22:02:46 $
- * $Revision: 1.1 $
- * $State: Rel $
- * $Author: unixlib $
- *
- * $Log: timeb,v $
- * Revision 1.1 1996/10/30 22:02:46 unixlib
- * Initial revision
- *
- ***************************************************************************/
-
- #ifndef __SYS_TIMEB_H
- #define __SYS_TIMEB_H 1
-
- #ifndef __TIME_H
- #include <time.h>
- #endif
-
- /* Structure returned by the `ftime' function. */
-
- struct timeb
- {
- time_t time; /* Seconds since epoch, as from `time'. */
- unsigned short int millitm; /* Additional milliseconds. */
- short int timezone; /* Minutes west of GMT. */
- short int dstflag; /* Nonzero if Daylight Savings Time used. */
- };
-
- /* Fill in TIMEBUF with information about the current time. */
- extern int ftime (struct timeb *timebuf);
-
- #endif /* sys/timeb.h */
-