1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-26 13:18:31 +00:00

Added explicit settings of calling conventions in pointer-to-function declarations in system and library headers.

This commit is contained in:
Greg King
2015-06-22 00:15:48 -04:00
parent a13284a792
commit 08e18c93c5
6 changed files with 14 additions and 12 deletions
+3 -2
View File
@@ -1,7 +1,8 @@
/*
** bsearch.c
**
** Ullrich von Bassewitz, 17.06.1998
** 1998-06-17, Ullrich von Bassewitz
** 2015-06-21, Greg King
*/
@@ -11,7 +12,7 @@
void* __fastcall__ bsearch (const void* key, const void* base, size_t n,
size_t size, int (*cmp) (const void*, const void*))
size_t size, int __fastcall__ (* cmp) (const void*, const void*))
{
int current;
int result;