Some more stdlib (array and vector, untested so far).

This commit is contained in:
2024-01-12 00:13:45 +01:00
parent 164f05bd59
commit ff3214fa5a
23 changed files with 577 additions and 9 deletions

17
stdlib/include/cstdio Normal file
View File

@@ -0,0 +1,17 @@
#pragma once
#if !defined(BAD_APPLE_OS_CSTDIO_INCLUDED)
#define BAD_APPLE_OS_CSTDIO_INCLUDED
#include <stdio.h>
namespace std
{
using ::putchar;
using ::puts;
using ::printf;
using ::vprintf;
}
#endif // !defined(BAD_APPLE_OS_CSTDIO_INCLUDED)