NULLABLE annotation

This commit is contained in:
2024-11-16 17:55:07 +05:00
parent 9da8732d93
commit b8296a45a7
6 changed files with 9 additions and 6 deletions

View File

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