Also added a pretty much untested and totally incomplete STL string type.
This commit is contained in:
17
bastl/include/cstdio
Normal file
17
bastl/include/cstdio
Normal 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)
|
||||
Reference in New Issue
Block a user