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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user