mirror of
https://github.com/cc65/cc65.git
synced 2025-08-15 06:27:36 +00:00
Make bsearch __fastcall__
git-svn-id: svn://svn.cc65.org/cc65/trunk@2584 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -84,8 +84,8 @@ long __fastcall__ labs (long val);
|
|||||||
int __fastcall__ atoi (const char* s);
|
int __fastcall__ atoi (const char* s);
|
||||||
long __fastcall__ atol (const char* s);
|
long __fastcall__ atol (const char* s);
|
||||||
int __fastcall__ atexit (void (*exitfunc) (void));
|
int __fastcall__ atexit (void (*exitfunc) (void));
|
||||||
void* bsearch (const void* key, const void* base, size_t n,
|
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 (*cmp) (const void*, const void*));
|
||||||
div_t __fastcall__ div (int numer, int denom);
|
div_t __fastcall__ div (int numer, int denom);
|
||||||
void __fastcall__ exit (int ret);
|
void __fastcall__ exit (int ret);
|
||||||
char* __fastcall__ getenv (const char* name);
|
char* __fastcall__ getenv (const char* name);
|
||||||
|
@@ -10,8 +10,8 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
void* bsearch (const void* key, const void* base, size_t n, size_t size,
|
void* __fastcall__ bsearch (const void* key, const void* base, size_t n,
|
||||||
int (*cmp) (const void*, const void*))
|
size_t size, int (*cmp) (const void*, const void*))
|
||||||
{
|
{
|
||||||
int current;
|
int current;
|
||||||
int result;
|
int result;
|
||||||
|
Reference in New Issue
Block a user