/* * Copyright (c) 2018-2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #ifdef __cplusplus extern "C" { #endif struct timeval { time_t tv_sec; suseconds_t tv_usec; }; #ifdef __cplusplus } #endif