mlib update: new isnan()/isnanf() implementation
[tangerine.git] / compiler / clib / times.c
blobefa675f696d107c5769a15295b47ed6b0fbb3676
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function times().
6 */
8 #include <aros/debug.h>
10 #include <sys/times.h>
12 clock_t times(struct tms *tms)
14 # warning Implement times()
15 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
17 tms->tms_utime = 0;
18 tms->tms_stime = 0;
19 tms->tms_cutime = 0;
20 tms->tms_cstime = 0;
22 return -1;