core: remove bozo typedef for types
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
|
||||
#include "kpanic.h"
|
||||
#include "kprintf.h"
|
||||
#include "types.h"
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#define PRINT_PTR(X) kprintf("%s:%u %s: %p\n", __FILE__, __LINE__, #X, X)
|
||||
@ -18,13 +18,13 @@
|
||||
} while (0)
|
||||
|
||||
struct function_entry {
|
||||
u32 addr;
|
||||
uint32_t addr;
|
||||
char name[64];
|
||||
};
|
||||
|
||||
struct stackframe {
|
||||
struct stackframe *ebp;
|
||||
u32 eip;
|
||||
uint32_t eip;
|
||||
};
|
||||
|
||||
void print_stack(void);
|
||||
|
||||
Reference in New Issue
Block a user