diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-10-23 14:40:22 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-10-23 14:40:22 +0200 |
commit | 356eb34e3213c95a7ce072bdfc860601dbf464fe (patch) | |
tree | 48ca2a6b5eb218535fe0bf3cb235ce100c26cf06 /include/global.h | |
parent | 5b05811dd944e51ce055ad5ddca570808457c7a0 (diff) |
undo revert
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/global.h b/include/global.h index 4afe89de7..2e3a106eb 100644 --- a/include/global.h +++ b/include/global.h @@ -12,8 +12,10 @@ #define asm_unified(x) asm(".syntax unified\n" x "\n.syntax divided") #if defined (__APPLE__) || defined (__CYGWIN__) -void memset(void *, int, size_t); -void memcpy(void *, const void *, size_t); +void *memset(void *, int, size_t); +void *memcpy(void *, const void *, size_t); +int strcmp(const char *s1, const char *s2); +char* strcpy(char *dst0, const char *src0); #endif // __APPLE__ #define ARRAY_COUNT(array) (sizeof(array) / sizeof((array)[0])) |