Skip to content

Commit

Permalink
fixed some marginal errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
captain-n3m0 committed May 9, 2023
1 parent 33ac36c commit 49cdda1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion disk_operations/disk.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef DISK_H
#define DISK_H

#include "filesystem/filesystem.h"
#include "../filesystem/filesystem.h"

typedef enum {
Kernel16F_DISK_TYPE_REAL = 0,
Expand Down
3 changes: 2 additions & 1 deletion filesystem/filesystem.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#ifndef FILESYSTEM_H
#define FILESYSTEM_H

#include "disk_operations/disk.h"
#include "../disk_operations/disk.h"
#include <stdio.h>

typedef void* (*FS_OPEN_FUNCTION)(struct disk* disk, char* filename, char mode);
typedef int (*FS_RESOLVE_FUNCTION)(struct disk* disk);
Expand Down

0 comments on commit 49cdda1

Please sign in to comment.