source: branches/libc-0.6/src/emx/include/sys/timeb.h

Last change on this file was 1339, checked in by bird, 21 years ago

todo.

  • Property cvs2svn:cvs-rev set to 1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 456 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/** @todo fixme, I'm signed now! */
11#if !defined (_TIME_T)
12#define _TIME_T
13typedef unsigned long time_t;
14#endif
15
16struct timeb
17{
18 time_t time;
19 unsigned millitm;
20 int timezone;
21 int dstflag;
22};
23
24void ftime (struct timeb *);
25
26void _ftime (struct timeb *);
27
28#if defined (__cplusplus)
29}
30#endif
31
32#endif /* not _SYS_TIMEB_H */
Note: See TracBrowser for help on using the repository browser.