xref: /freebsd/contrib/llvm-project/libcxx/modules/std/ctime.inc (revision 7fdf597e96a02165cfe22ff357b857d5fa15ed8a)
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 namespace std {
11  using std::clock_t _LIBCPP_USING_IF_EXISTS;
12  using std::size_t _LIBCPP_USING_IF_EXISTS;
13  using std::time_t _LIBCPP_USING_IF_EXISTS;
14
15  using std::timespec _LIBCPP_USING_IF_EXISTS;
16  using std::tm _LIBCPP_USING_IF_EXISTS;
17
18  using std::asctime _LIBCPP_USING_IF_EXISTS;
19  using std::clock _LIBCPP_USING_IF_EXISTS;
20  using std::ctime _LIBCPP_USING_IF_EXISTS;
21  using std::difftime _LIBCPP_USING_IF_EXISTS;
22  using std::gmtime _LIBCPP_USING_IF_EXISTS;
23  using std::localtime _LIBCPP_USING_IF_EXISTS;
24  using std::mktime _LIBCPP_USING_IF_EXISTS;
25  using std::strftime _LIBCPP_USING_IF_EXISTS;
26  using std::time _LIBCPP_USING_IF_EXISTS;
27  using std::timespec_get _LIBCPP_USING_IF_EXISTS;
28} // namespace std
29