mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 02:30:44 +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:
parent
2875922a69
commit
aaf47e40df
@ -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 */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user