1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-27 04:54:54 +00:00

Removed getchar/putchar macros

git-svn-id: svn://svn.cc65.org/cc65/trunk@3215 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-10-06 21:35:34 +00:00
parent 2875922a69
commit aaf47e40df

View File

@ -135,8 +135,6 @@ int __fastcall__ fileno (FILE* f); /* Unix */
void __fastcall__ _poserror (const char* msg); /* cc65 */
/* Masking macros for some functions */
#define getchar() fgetc (stdin) /* ANSI */
#define putchar(c) fputc (c, stdout) /* ANSI */
#define getc(f) fgetc (f) /* ANSI */
#define putc(c, f) fputc (c, f) /* ANSI */