12345678910111213141516171819202122 |
- /*
- * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <Kernel/API/POSIX/sys/types.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- struct timeval {
- time_t tv_sec;
- suseconds_t tv_usec;
- };
- #ifdef __cplusplus
- }
- #endif
|