X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libsrc%2Fcommon%2F_printf.h;h=e965b0d8529f9b9c2cb9752616ff296dda6ab698;hb=f16516047a551319c82debd339ded8bc2b587212;hp=03e8f7307be596bd83b8a9c020ce02caa54f9fc0;hpb=643f468295fa58049ba3cbdcfaa40a12424c91f0;p=cc65 diff --git a/libsrc/common/_printf.h b/libsrc/common/_printf.h index 03e8f7307..e965b0d85 100644 --- a/libsrc/common/_printf.h +++ b/libsrc/common/_printf.h @@ -1,7 +1,7 @@ /* * _printf.h * - * (C) Copyright 1998 Ullrich von Bassewitz (uz@ibb.schwaben.com) + * (C) Copyright 1998 Ullrich von Bassewitz (uz@cc65.org) * */ @@ -25,16 +25,16 @@ typedef void (*outfunc) (struct outdesc* desc, const char* buf, unsigned count); * so check this when altering the structure. */ struct outdesc { - int ccount; /* Character counter */ - outfunc fout; /* Routine used to output data */ - void* ptr; /* Data internal to print routine */ - unsigned uns; /* Data internal to print routine */ + int ccount; /* Character counter */ + outfunc fout; /* Routine used to output data */ + void* ptr; /* Data internal to print routine */ + unsigned uns; /* Data internal to print routine */ }; /* Internal formatting routine */ -int _printf (struct outdesc* d, const char* format, va_list ap); +void __fastcall__ _printf (struct outdesc* d, const char* format, va_list ap);