1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #ifndef _LIBCPP_CTIME
- #define _LIBCPP_CTIME
- #include <__config>
- #include <time.h>
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- #pragma GCC system_header
- #endif
- _LIBCPP_BEGIN_NAMESPACE_STD
- using ::clock_t;
- using ::size_t;
- using ::time_t;
- using ::tm;
- #if !defined(_LIBCPP_SGX_CONFIG)
- using ::clock;
- #endif
- using ::difftime;
- #if !defined(_LIBCPP_SGX_CONFIG)
- using ::mktime;
- using ::time;
- #endif
- #ifndef _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS
- using ::asctime;
- #if !defined(_LIBCPP_SGX_CONFIG)
- using ::ctime;
- using ::gmtime;
- using ::localtime;
- #endif
- #endif
- using ::strftime;
- _LIBCPP_END_NAMESPACE_STD
- #endif
|