undo malloc improvement (it actually made it worse)

This commit is contained in:
Lauchmelder 2022-01-21 14:22:50 +01:00
parent aedba6e52b
commit c49ff2998d
3 changed files with 44 additions and 49 deletions

View file

@ -30,7 +30,7 @@ char* ultoa(unsigned long number, char* string, int base)
return string;
}
char* buffer = (char*)malloc(1024);
char* buffer = (char*)malloc();
char* temp = buffer;
int i = 0;