Squash commits for public release

This commit is contained in:
2025-02-12 09:54:05 -05:00
commit 7118adc514
1108 changed files with 80873 additions and 0 deletions

27
libs/libcxx/include/ctime Normal file
View File

@@ -0,0 +1,27 @@
#pragma GCC system_header
#ifndef _LIBCXX_CTIME
#define _LIBCXX_CTIME
#include <__config>
#include <time.h>
_LIBCXX_BEGIN_NAMESPACE_STD
using ::clock_getres;
using ::clock_gettime;
using ::clock_settime;
using ::gmtime;
using ::gmtime_r;
using ::localtime;
using ::localtime_r;
using ::mktime;
using ::nanosleep;
using ::strftime;
using ::time;
using ::time_t;
using ::timespec;
_LIBCXX_END_NAMESPACE_STD
#endif // _LIBCXX_CTIME