sprintf_malloc

This commit is contained in:
2024-11-16 19:36:17 +05:00
parent b8296a45a7
commit 83172df776
7 changed files with 41 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
#include "impl_macros.h"
NULLABLE(FILE* fileFromN(VM* vm, size_t pos, u32 file_n)){
FILE* NULLABLE(fileFromN)(VM* vm, size_t pos, u32 file_n){
FILE* f = NULL;
switch(file_n){
case 0: f = stdin; break;