-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mem{cmp,cpy,move,set}: Split symbols that might conflict with mingw-w…
…64 CRT
- Loading branch information
Showing
7 changed files
with
54 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* This file is part of MCF Gthread. | ||
* See LICENSE.TXT for licensing information. | ||
* Copyleft 2022, LH_Mouse. All wrongs reserved. */ | ||
|
||
#include "config.h" | ||
#include "win32.h" | ||
|
||
int __cdecl | ||
memcmp(const void* src, const void* cmp, size_t size) | ||
{ | ||
return __MCF_mcomp(src, cmp, size); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* This file is part of MCF Gthread. | ||
* See LICENSE.TXT for licensing information. | ||
* Copyleft 2022, LH_Mouse. All wrongs reserved. */ | ||
|
||
#include "config.h" | ||
#include "win32.h" | ||
|
||
void* __cdecl | ||
memcpy(void* dst, const void* src, size_t size) | ||
{ | ||
return __MCF_mcopy(dst, src, size); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* This file is part of MCF Gthread. | ||
* See LICENSE.TXT for licensing information. | ||
* Copyleft 2022, LH_Mouse. All wrongs reserved. */ | ||
|
||
#include "config.h" | ||
#include "win32.h" | ||
|
||
void* __cdecl | ||
memmove(void* dst, const void* src, size_t size) | ||
{ | ||
return __MCF_mmove(dst, src, size); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* This file is part of MCF Gthread. | ||
* See LICENSE.TXT for licensing information. | ||
* Copyleft 2022, LH_Mouse. All wrongs reserved. */ | ||
|
||
#include "config.h" | ||
#include "win32.h" | ||
|
||
void* __cdecl | ||
memset(void* dst, int val, size_t size) | ||
{ | ||
return __MCF_mfill(dst, (uint8_t) val, size); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters