Autodoc corrections
[cake.git] / compiler / clib / times.c
blobb8079f128124bfc5f584e89a84a3f2b13a252741
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function times().
6 */
8 #include <aros/debug.h>
10 /*****************************************************************************
12 NAME */
14 #include <sys/times.h>
16 clock_t times(
18 /* SYNOPSIS */
19 struct tms *tms)
21 /* FUNCTION
23 INPUTS
25 RESULT
27 NOTES
29 EXAMPLE
31 BUGS
33 SEE ALSO
35 INTERNALS
37 ******************************************************************************/
39 # warning Implement times()
40 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
42 tms->tms_utime = 0;
43 tms->tms_stime = 0;
44 tms->tms_cutime = 0;
45 tms->tms_cstime = 0;
47 return -1;