chore: remove trailing whitespace and fix indentation across multiple files

This commit is contained in:
2025-12-09 18:41:05 +00:00
parent f30f58044c
commit 758399397a
15 changed files with 191 additions and 453 deletions
-10
View File
@@ -19,14 +19,4 @@ static inline void* rava_safe_realloc(void *ptr, size_t size) {
return new_ptr;
}
static inline void* rava_safe_malloc(size_t size) {
if (size == 0) return NULL;
return malloc(size);
}
static inline void* rava_safe_calloc(size_t count, size_t size) {
if (count == 0 || size == 0) return NULL;
return calloc(count, size);
}
#endif