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
Restored work-around for hangs when trying to use disk-based handlers
[tangerine.git]
/
compiler
/
clib
/
ftime.c
blob
81a31af463b7ce2c34a9730cc7a00089022ed2a5
1
/*
2
Copyright © 2004, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <time.h>
7
#include <sys/timeb.h>
8
9
int
ftime
(
struct
timeb
*
tb
)
10
{
11
tb
->
time
=
time
(
NULL
);
12
tb
->
millitm
=
0
;
// FIXME
13
tb
->
timezone
=
0
;
// FIXME
14
tb
->
dstflag
=
0
;
// FIXME
15
16
return
0
;
17
}