Modified PANIC function

This commit is contained in:
Cetica Marco
2021-01-05 18:43:59 +01:00
parent 4299b3806c
commit dc3803491e
12 changed files with 608 additions and 53 deletions

View File

@@ -1,6 +1,6 @@
#include "ordered_array.h"
#include "kheap.h"
#include "../libc/assert.h"
#include "../libc/panic.h"
#include "../libc/string.h"
uint8_t standard_lessthan_predicate(type_t a, type_t b) {
@@ -63,4 +63,4 @@ void remove_ordered_array(uint32_t i, ordered_array_t *array) {
i++;
}
array->size--;
}
}