#include "config.h" #include <_ansi.h> #include <_syslist.h> #include #include #ifdef REENTRANT_SYSCALLS_PROVIDED clock_t _times_r(struct _reent *r, struct tms *ptms) { #else clock_t _times(struct tms *buf) { struct _reent *r = _REENT; #endif r->_errno = ENOSYS; return (clock_t)-1; }