added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / compiler / clib / include / sys / timeb.h
blob0b04665be6c614be7441726aa4d6524b74ac5d7f
1 #ifndef _SYS_TIMEB_H_
2 #define _SYS_TIMEB_H_
3 /*
4 Copyright © 1995-2002, The AROS Development Team. All rights reserved.
5 $Id$
7 Header <sys/timeb.h>
8 */
10 #include <aros/system.h>
12 struct timeb
14 time_t time;
15 unsigned short millitm;
16 short timezone;
17 short dstflag;
20 __BEGIN_DECLS
21 int ftime(struct timeb *tp);
22 __END_DECLS
24 #endif /* _SYS_TIMEB_H_ */