| 123456789101112131415161718192021222324252627282930313233343536 |
- module;
- #include <cctype>
- #include <clocale>
- #include <cmath>
- #include <cstdio>
- #include <cstdlib>
- #include <cstring>
- #include <source_location>
- export module Core.Std;
- export namespace std {
- using std::source_location;
- }
- export using ::fflush;
- export using ::fputs;
- export using ::free;
- export using ::iscntrl;
- export using ::memcmp;
- export using ::memcpy;
- export using ::memset;
- export using ::puts;
- export using ::setlocale;
- export using ::sincosf;
- export using ::sqrtf;
- export using ::stdout;
- export using ::strcmp;
- export using ::strdup;
- export using ::strstr;
- export using ::tanf;
- export using ::malloc;
- export using ::realloc;
- export using ::exit;
- export inline auto CORE_LC_ALL = LC_ALL;
|