summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/rdos/times.c
blob: b0ba90030566ea80a2e194ee3419845ace181688 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <sys/times.h>
#include <errno.h>

clock_t times(struct tms *buf)
{
  errno = ENOSYS;
  return -1;
}