mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 09:52:24 +00:00
Remove __cdecl from memcpy declaration - unnecessary and wrong on some platforms.
This commit is contained in:
parent
f3ecbd5c2b
commit
2a26759e70
6 changed files with 6 additions and 6 deletions
|
|
@ -32,7 +32,7 @@ typedef unsigned char SYSTEM_CARD8;
|
|||
typedef unsigned int size_t;
|
||||
#endif
|
||||
|
||||
void * __cdecl memcpy(void *dest, const void *source, size_t size);
|
||||
void *memcpy(void *dest, const void *source, size_t size);
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue