Changes in uspace/lib/cpp/include/ctime [b251af5a:bc56f30] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/ctime
rb251af5a rbc56f30 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.