fix signatures for builtins mistakenly marked as api functions

This commit is contained in:
Alex Bates 2020-08-18 01:54:13 +01:00
parent 19c9a82b2a
commit 42747be7ae
No known key found for this signature in database
GPG Key ID: 5E11C2DB78877706
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#include "common.h"
INCLUDE_API_ASM("os/code_4a140_len_70", strcpy);
char* INCLUDE_ASM("os/code_4a140_len_70", strcpy, char* destination, const char* source);
INCLUDE_API_ASM("os/code_4a140_len_70", strcmp);
s32 INCLUDE_ASM("os/code_4a140_len_70", strcmp, const char* str1, const char* str2);

View File

@ -1,3 +1,3 @@
#include "common.h"
INCLUDE_API_ASM("os/code_4a1b0_len_40", memset);
void* INCLUDE_ASM("os/code_4a1b0_len_40", memset, void* ptr, s32 value, s32 num);