18 lines
248 B
Plaintext
18 lines
248 B
Plaintext
|
|
#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)
|