fixed slight errors

This commit is contained in:
MonkeyGG2 2024-02-18 11:50:48 -05:00
parent 481d656639
commit e2c1eaaa8e
2 changed files with 5 additions and 3 deletions

View File

@ -34,7 +34,7 @@
struct allocated {
void *ref;
s32 size;
}
};
void memory_init(void);

View File

@ -1,10 +1,12 @@
#ifndef PROCESS_H
#define PROCESS_H
#include <types.h>
struct process {
void *prstart;
s32 prsize;
s32 pid;
}
};
#endif