source: vendor/emx/current/include/sys/timeb.h

Last change on this file was 18, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 420 bytes
Line 
1/* sys/timeb.h (emx+gcc) */
2
3#ifndef _SYS_TIMEB_H
4#define _SYS_TIMEB_H
5
6#if defined (__cplusplus)
7extern "C" {
8#endif
9
10#if !defined (_TIME_T)
11#define _TIME_T
12typedef unsigned long time_t;
13#endif
14
15struct timeb
16{
17 time_t time;
18 unsigned millitm;
19 int timezone;
20 int dstflag;
21};
22
23void ftime (struct timeb *);
24
25void _ftime (struct timeb *);
26
27#if defined (__cplusplus)
28}
29#endif
30
31#endif /* not _SYS_TIMEB_H */
Note: See TracBrowser for help on using the repository browser.