@web-font-path: "roboto-debian.css";
Loading...
Searching...
No Matches
times.h
1/*
2 * Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef _PICO_LLVM_LIBC_SYS_TIMES_H
8#define _PICO_LLVM_LIBC_SYS_TIMES_H
9
10#include <llvm-libc-types/time_t.h>
11
12#define CLOCKS_PER_SEC 100
13
14typedef int clock_t;
15
16struct tms {
17 clock_t tms_utime;
18 clock_t tms_stime;
19 clock_t tms_cutime;
20 clock_t tms_cstime;
21};
22
23#endif
Definition times.h:16