chore: remove trailing whitespace from all source files in src/ directory

This commit is contained in:
2025-12-05 00:12:39 +00:00
parent 915e097a52
commit 0a368ed1c3
11 changed files with 945 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef RAVA_GC_ROOTS_H
#define RAVA_GC_ROOTS_H
#include "gc.h"
#include "../runtime.h"
void rava_gc_scan_roots(RavaVM_t *vm);
void rava_gc_mark_value(RavaValue_t value);
void rava_gc_mark_nanbox(uint64_t v);
void rava_gc_mark_string(const char *str);
#endif