blob: 55969a7e3eb96e9248b0008c1746449fef524a6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* See LICENSE of license details. */
#include <errno.h>
#include <sys/times.h>
#include "stub.h"
#include "weak_under_alias.h"
clock_t __wrap_times(struct tms* buf)
{
return _stub(EACCES);
}
weak_under_alias(times);
|