xref: /llvm-project/lldb/include/lldb/Host/Time.h (revision ff17a4136dedba004d901a571c4fae501affd051)
1 //===-- Time.h --------------------------------------------------*- C++ -*-===//
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 //===----------------------------------------------------------------------===//
8 
9 // Include system time headers, adding missing functions as necessary
10 
11 #ifndef LLDB_HOST_TIME_H
12 #define LLDB_HOST_TIME_H
13 
14 #include <ctime>
15 
16 #endif // LLDB_HOST_TIME_H
17