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