source: trunk/libs/newlib/src/newlib/libc/syscalls/systimes.c

Last change on this file was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 139 bytes
Line 
1/* connector for times */
2
3#include <reent.h>
4#include <sys/times.h>
5
6clock_t
7times (struct tms *buf)
8{
9  return _times_r (_REENT, buf);
10}
Note: See TracBrowser for help on using the repository browser.