fixed args.

This commit is contained in:
Jonathan Turner 2023-11-29 17:51:29 -05:00
parent 940e58b89d
commit b74183bdc7
2 changed files with 2 additions and 1 deletions

View File

@ -163,7 +163,7 @@ void print_holes(node* umem_head) {
while(umem_head != NULL) { while(umem_head != NULL) {
if (umem_head->base_register - 0x10000 != 0) { if (umem_head->base_register - 0x10000 != 0) {
node *hole = add_node( hole, 0x10000, unem_head->base_register-0x10000, true, -1); node *hole = add_node( hole, 0x10000, unem_head->base_register-0x10000, true, -1);
print_list(hole); print_list(hole, false);
} }
} }
} }

View File

@ -10,6 +10,7 @@
#include "../libc/linked.h" #include "../libc/linked.h"
void user_input(char *input); void user_input(char *input);
void print_holes(node *enum_head);
int digit_len(unsigned digit); int digit_len(unsigned digit);
int digit_conver(const char *str); int digit_conver(const char *str);