updated vector to video version, will probably break a lot

This commit is contained in:
herbglitch 2024-08-27 03:23:29 -06:00
parent c1e60a6d2f
commit 93dc0fa053
12 changed files with 461 additions and 97 deletions

View file

@ -1,3 +1,16 @@
#include "arc/std/errno.h"
int32_t arc_errno = 0;
#include <stdint.h>
int32_t arc_errno = 0;
#if ARC_DEBUG
#include <stdio.h>
FILE *arc_errno_log_file = NULL;
#ifndef ARC_DEBUG_LOG_STREAM_OVERRIDE
void ARC_Errno_SetDefaultStream(void){
arc_errno_log_file = stdout;
}
#endif
#endif