repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git]
/
compiler
/
clib
/
include
/
sys
/
timeb.h
blob
0b04665be6c614be7441726aa4d6524b74ac5d7f
1
#ifndef _SYS_TIMEB_H_
2
#define _SYS_TIMEB_H_
3
/*
4
Copyright © 1995-2002, The AROS Development Team. All rights reserved.
5
$Id$
6
7
Header <sys/timeb.h>
8
*/
9
10
#include <aros/system.h>
11
12
struct
timeb
13
{
14
time_t
time
;
15
unsigned short
millitm
;
16
short
timezone
;
17
short
dstflag
;
18
};
19
20
__BEGIN_DECLS
21
int
ftime
(
struct
timeb
*
tp
);
22
__END_DECLS
23
24
#endif
/* _SYS_TIMEB_H_ */