Add va_end and returns to variadic functions (#950)

This commit is contained in:
EllipticEllipsis
2021-09-07 17:17:19 +01:00
committed by GitHub
parent c577ed1e84
commit b1cd46c37c
5 changed files with 25 additions and 2 deletions
+3
View File
@@ -21,5 +21,8 @@ s32 sprintf(char* dst, const char* fmt, ...) {
if (ret > -1) {
dst[ret] = 0;
}
va_end(args);
return ret;
}