]> git.sur5r.net Git - cc65/blobdiff - libsrc/cbm/cbm_load.c
Made __fastcall__ be the default calling convention for non-variadic functions.
[cc65] / libsrc / cbm / cbm_load.c
index 695af504b61d0829e5ba7daa05c5738d9f256d0d..7d4a5086b40544b276763f5e67e61d3f58fb6192 100644 (file)
@@ -1,9 +1,9 @@
 /*
 ** Marc 'BlackJack' Rintsch, 06.03.2001
 **
-** unsigned int cbm_load(const char* name,
-**                       unsigned char device,
-**                       const unsigned char* data);
+** unsigned int __cdecl__ cbm_load(const char* name,
+**                                 unsigned char device,
+**                                 const unsigned char* data);
 */
 
 #include <cbm.h>
@@ -11,7 +11,7 @@
 /* loads file "name" from given device to given address or to the load address
 ** of the file if "data" is 0
 */
-unsigned int cbm_load(const char* name, unsigned char device, void* data)
+unsigned int __cdecl__ cbm_load(const char* name, unsigned char device, void* data)
 {
     /* LFN is set to 0; but, it's not needed for loading
     ** (BASIC V2 sets it to the value of the SA for LOAD).