chore: remove trailing whitespace and fix indentation across multiple files
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user