Added some more stdlib.

This commit is contained in:
2024-01-11 00:28:38 +01:00
parent 1756b6a1a9
commit 0348b24f05
17 changed files with 354 additions and 47 deletions

14
include/cstdlib Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#if !defined(BAD_APPLE_OS_CSTDLIB_INCLUDED)
#define BAD_APPLE_OS_CSTDLIB_INCLUDED
#include <stdlib.h>
namespace std
{
using ::abort;
}
#endif // !defined(BAD_APPLE_OS_CSTDLIB_INCLUDED)