From: cuz Date: Sat, 23 Nov 2002 18:47:55 +0000 (+0000) Subject: Make fopen fastcall X-Git-Tag: V2.12.0~2028 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2fbb3ae1b713fbd0a394cd0c672ae8965ae727e0;p=cc65 Make fopen fastcall git-svn-id: svn://svn.cc65.org/cc65/trunk@1609 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/include/stdio.h b/include/stdio.h index 14372a562..813e1ac6b 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -80,7 +80,7 @@ int __fastcall__ ferror (FILE* f); int __fastcall__ fflush (FILE* f); int fgetc (FILE* f); char* fgets (char* buf, size_t size, FILE* f); -FILE* fopen (const char* name, const char* mode); +FILE* __fastcall__ fopen (const char* name, const char* mode); int fprintf (FILE* f, const char* format, ...); int fputc (int c, FILE* f); int fputs (const char* s, FILE* f);