Bump version to 19.1.0 (final)
[llvm-project.git] / libc / include / llvm-libc-types / struct_timeval.h
blob365b835d345dd33ecf1fe55850bafa2d13f8900a
1 //===-- Definition of struct timeval -------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIBC_TYPES_STRUCT_TIMEVAL_H
10 #define LLVM_LIBC_TYPES_STRUCT_TIMEVAL_H
12 #include "llvm-libc-types/suseconds_t.h"
13 #include "llvm-libc-types/time_t.h"
15 struct timeval {
16 time_t tv_sec; // Seconds
17 suseconds_t tv_usec; // Micro seconds
20 #endif // LLVM_LIBC_TYPES_STRUCT_TIMEVAL_H