xref: /freebsd/contrib/llvm-project/libcxx/modules/std.compat/ctime.inc (revision e63d20b70ee1dbee9b075f29de6f30cdcfe1abe1)
1// -*- C++ -*-
2//===----------------------------------------------------------------------===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10export {
11  using ::clock_t;
12  using ::size_t;
13  using ::time_t;
14
15  using ::timespec;
16  using ::tm;
17
18  using ::asctime;
19  using ::clock;
20  using ::ctime;
21  using ::difftime;
22  using ::gmtime;
23  using ::localtime;
24  using ::mktime;
25  using ::strftime;
26  using ::time;
27  using ::timespec_get _LIBCPP_USING_IF_EXISTS;
28} // export
29