@web-font-path: "roboto-debian.css";
Loading...
Searching...
No Matches
time.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_TIME_H
8#define _PICO_LLVM_LIBC_SYS_TIME_H
9
10#include <__llvm-libc-common.h>
11
12#include <llvm-libc-types/struct_timeval.h>
13
14struct timezone {
15 int tz_minuteswest;
16 int tz_dsttime;
17};
18
19__BEGIN_C_DECLS
20
21int gettimeofday(struct timeval *tv, struct timezone *tz);
22int settimeofday(const struct timeval *tv, const struct timezone *tz);
23
24__END_C_DECLS
25
26#endif // _PICO_LLVM_LIBC_SYS_TIME_H
Definition time.h:14