Changeset 52acfab in mainline for uspace/lib/cpp/include/ctime
- Timestamp:
- 2019-05-28T19:24:14Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 77de449e
- Parents:
- af5037d (diff), bebd154 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-05-28 19:24:14)
- git-committer:
- GitHub <noreply@…> (2019-05-28 19:24:14)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/ctime
raf5037d r52acfab 30 30 #define LIBCPP_CTIME 31 31 32 33 namespace std::hel 34 { 35 extern "C" { 36 #include <time.h> 37 } 38 } 32 #include <time.h> 39 33 40 34 namespace std 41 35 { 42 /* using std::hel::clock_t; */43 using std::hel::size_t;44 using std::hel::time_t;45 using std::hel::tm;46 /* using std::hel::timespec; */36 using ::clock_t; 37 using ::size_t; 38 using ::time_t; 39 using ::tm; 40 using ::timespec; 47 41 48 /* using std::hel::clock; */49 using std::hel::time;50 using std::hel::difftime;42 using ::clock; 43 using ::time; 44 using ::difftime; 51 45 52 /* using std::hel::ctime; */53 /* using std::hel::asctime; */54 using std::hel::strftime;55 /* using std::hel::wcsftime; */56 /* using std::hel::gmtime; */57 /* using std::hel::localtime; */58 using std::hel::mktime;46 using ::ctime; 47 using ::asctime; 48 using ::strftime; 49 /* using ::wcsftime; */ 50 /* using ::gmtime; */ 51 /* using ::localtime; */ 52 using ::mktime; 59 53 } 60 54 61 /* using std::hel::clock_t; */62 using std::hel::size_t;63 using std::hel::time_t;64 using std::hel::tm;65 /* using std::hel::timespec; */66 67 /* using std::hel::clock; */68 using std::hel::time;69 using std::hel::difftime;70 71 /* using std::hel::ctime; */72 /* using std::hel::asctime; */73 using std::hel::strftime;74 /* using std::hel::wcsftime; */75 /* using std::hel::gmtime; */76 /* using std::hel::localtime; */77 using std::hel::mktime;78 79 55 #endif
Note:
See TracChangeset
for help on using the changeset viewer.