1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-22 12:30:41 +00:00

remove() is __fastcall__

git-svn-id: svn://svn.cc65.org/cc65/trunk@2188 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-06-02 16:11:38 +00:00
parent 6e301bc88e
commit f87cc5d0f7

View File

@ -87,18 +87,18 @@ int __fastcall__ fputs (const char* s, FILE* f);
size_t __fastcall__ fread (void* buf, size_t size, size_t count, FILE* f); size_t __fastcall__ fread (void* buf, size_t size, size_t count, FILE* f);
FILE* freopen (const char* name, const char* mode, FILE* f); FILE* freopen (const char* name, const char* mode, FILE* f);
size_t __fastcall__ fwrite (const void* buf, size_t size, size_t count, FILE* f); size_t __fastcall__ fwrite (const void* buf, size_t size, size_t count, FILE* f);
int fgetpos(FILE* f, fpos_t *pos); int fgetpos (FILE* f, fpos_t *pos);
int fsetpos(FILE* f, const fpos_t* pos); int fsetpos (FILE* f, const fpos_t* pos);
long ftell(FILE* f); long ftell (FILE* f);
int fseek(FILE* f, long offset, int whence); int fseek (FILE* f, long offset, int whence);
void rewind(FILE *f); void rewind (FILE *f);
int getchar (void); int getchar (void);
char* gets (char* s); char* gets (char* s);
void __fastcall__ perror (const char* s); void __fastcall__ perror (const char* s);
int printf (const char* format, ...); int printf (const char* format, ...);
int putchar (int c); int putchar (int c);
int puts (const char* s); int puts (const char* s);
int remove (const char* name); int __fastcall__ remove (const char* name);
int rename (const char* old, const char* new); int rename (const char* old, const char* new);
int sprintf (char* buf, const char* format, ...); int sprintf (char* buf, const char* format, ...);
int __fastcall__ vfprintf (FILE* f, const char* format, va_list ap); int __fastcall__ vfprintf (FILE* f, const char* format, va_list ap);
@ -138,3 +138,4 @@ void __fastcall__ _poserror (const char* msg); /* cc65 */