Espresso 0.0.1a

This commit is contained in:
2025-06-17 15:50:07 -05:00
parent eeea3b2d86
commit fca025a9bf
24 changed files with 1080 additions and 600 deletions

View File

@ -69,7 +69,7 @@ void* calloc(size_t nmemb, size_t size)
void* ptr = malloc(total);
if (ptr)
{
memset(ptr, 0, total);
memset(ptr, 0, total);
}
return ptr;
}