source: mainline/uspace/lib/cpp/include/ctime@ b57ba05

Last change on this file since b57ba05 was b57ba05, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 3 years ago

Update headers in C++ files

  • Property mode set to 100644
File size: 514 bytes
Line 
1/*
2 * SPDX-FileCopyrightText: 2018 Jaroslav Jindrak
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef LIBCPP_CTIME
8#define LIBCPP_CTIME
9
10#include <time.h>
11
12namespace std
13{
14 using ::clock_t;
15 using ::size_t;
16 using ::time_t;
17 using ::tm;
18 using ::timespec;
19
20 using ::clock;
21 using ::time;
22 using ::difftime;
23
24 using ::ctime;
25 using ::asctime;
26 using ::strftime;
27 /* using ::wcsftime; */
28 /* using ::gmtime; */
29 /* using ::localtime; */
30 using ::mktime;
31}
32
33#endif
Note: See TracBrowser for help on using the repository browser.