Files now do not reference libc paths directly

This commit is contained in:
pjht 2019-03-30 10:39:26 -05:00
parent a1267bd5b3
commit ed591187a1
4 changed files with 10 additions and 10 deletions

View File

@ -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>

View File

@ -1,7 +1,7 @@
#ifndef VFS_H
#define VFS_H
#include <stdint.h>
#include "../libc/stdio.h"
#include <stdio.h>
typedef enum {
FSOP_MOUNT,

View File

@ -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));

View File

@ -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>