timeb.h - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       timeb.h (176B)
       ---
            1 #ifndef _TIMEB_H_
            2 #define _TIMEB_H_
            3 
            4 struct timeb
            5 {
            6         time_t time;
            7         unsigned short millitm;
            8         short timezone;
            9         short dstflag;
           10 };
           11 
           12 int ftime(struct timeb*);
           13 
           14 #endif  // _TIMEB_H_