summaryrefslogtreecommitdiff
path: root/src/libc/include/sys/times.h
blob: 4a8d3ef59308ea6bb4dd07e008e756275f24c8c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include <bits/panic.h>

struct tms {
	clock_t tms_utime;
	clock_t tms_stime;
	clock_t tms_cutime;
	clock_t tms_cstime;
};

static inline clock_t times(struct tms *buf) {
	__libc_panic("unimplemented");
}