Files now do not reference libc paths directly
This commit is contained in:
parent
a1267bd5b3
commit
ed591187a1
@ -1,9 +1,9 @@
|
||||
#include "../../cpu/i386/ports.h"
|
||||
#include "../../cpu/i386/isr.h"
|
||||
#include "../serial.h"
|
||||
#include "../../libc/stdio.h"
|
||||
#include "../../libc/string.h"
|
||||
#include "../../libc/devbuf.h"
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <devbuf.h>
|
||||
#include "../vga.h"
|
||||
#include "../../fs/devfs.h"
|
||||
#include <klog.h>
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef VFS_H
|
||||
#define VFS_H
|
||||
#include <stdint.h>
|
||||
#include "../libc/stdio.h"
|
||||
#include <stdio.h>
|
||||
|
||||
typedef enum {
|
||||
FSOP_MOUNT,
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "devbuf.h"
|
||||
#include "stdlib.h"
|
||||
#include "stdio.h"
|
||||
#include <devbuf.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
devbuf* devbuf_init() {
|
||||
devbuf* buf=malloc(sizeof(devbuf));
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "string.h"
|
||||
#include "stdlib.h"
|
||||
#include "math.h"
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
#include <stdint.h>
|
||||
#include <memory.h>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user