2018 cleanup update

This commit is contained in:
joonicks
2018-03-05 23:09:40 +01:00
parent 723ac1f91e
commit e5ad9bb990
20 changed files with 122 additions and 82 deletions

View File

@@ -176,7 +176,7 @@ void Free(char **mem)
#endif /* DEBUG */
int Strlen(const char *first, ...)
const int Strlen(const char *first, ...)
{
const char *s,*o;
int n;
@@ -200,7 +200,7 @@ int Strlen(const char *first, ...)
}
__attr(CORE_SEG,__regparm(2))
int Strlen2(const char *one, const char *two)
const int Strlen2(const char *one, const char *two)
{
const char *s1,*s2;