@@ -22,6 +22,12 @@
#include <stdarg.h>
+typedef unsigned char u8;
+typedef unsigned short u16;
+typedef unsigned u32;
+typedef unsigned long ulong;
+typedef unsigned long long u64;
+
extern void exit(int code);
extern void panic(char *fmt, ...);
@@ -4,12 +4,6 @@
static void *g_apic = (void *)0xfee00000;
static void *g_ioapic = (void *)0xfec00000;
-typedef unsigned char u8;
-typedef unsigned short u16;
-typedef unsigned u32;
-typedef unsigned long ulong;
-typedef unsigned long long u64;
-
struct apic_ops {
u32 (*reg_read)(unsigned reg);
void (*reg_write)(unsigned reg, u32 val);
@@ -2,12 +2,6 @@
#include "apic.h"
#include "vm.h"
-typedef unsigned char u8;
-typedef unsigned short u16;
-typedef unsigned u32;
-typedef unsigned long ulong;
-typedef unsigned long long u64;
-
typedef struct {
unsigned short offset0;
unsigned short selector;
@@ -1,7 +1,5 @@
#include "libcflat.h"
-typedef unsigned long long u64;
-
u64 rdtsc(void)
{
unsigned a, d;