17 lines
343 B
Plaintext
17 lines
343 B
Plaintext
// cstdio standard header
|
|
#ifndef _CSTDIO_
|
|
#define _CSTDIO_
|
|
#ifdef _STD_USING
|
|
#undef _STD_USING
|
|
#include <stdio.h>
|
|
#define _STD_USING
|
|
#else
|
|
#include <stdio.h>
|
|
#endif /* _STD_USING */
|
|
#endif /* _CSTDIO_ */
|
|
|
|
/*
|
|
* Copyright (c) 1994 by P.J. Plauger. ALL RIGHTS RESERVED.
|
|
* Consult your license regarding permissions and restrictions.
|
|
*/
|