From 6156a8b472f0ce7a1915113f6ef6424e60e0e722 Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 3 Dec 2002 22:31:19 +0000 Subject: [PATCH] Make the read vector __fastcall__ git-svn-id: svn://svn.cc65.org/cc65/trunk@1712 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/modload.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/modload.h b/include/modload.h index 492b5b401..67d79ecec 100644 --- a/include/modload.h +++ b/include/modload.h @@ -61,7 +61,7 @@ struct mod_ctrl { * NOTE: read() is designed so that the POSIX read() routine can be used * for this vector, if you're loading from disk. */ - int (*read) (int callerdata, void* buffer, unsigned count); + int __fastcall__ (*read) (int callerdata, void* buffer, unsigned count); int callerdata; /* Parameters set by the loader routine */ -- 2.39.5