🔧 include上级文件夹时,统一采用<>来指定文件

This commit is contained in:
fslongjin
2022-07-17 15:41:19 +08:00
parent d53c7bd1c7
commit d0ddb73788
39 changed files with 140 additions and 102 deletions

View File

@ -1,10 +1,10 @@
#include "process.h"
#include "../exception/gate.h"
#include "../common/printk.h"
#include "../common/kprint.h"
#include "../syscall/syscall.h"
#include "../syscall/syscall_num.h"
#include <exception/gate.h>
#include <common/printk.h>
#include <common/kprint.h>
#include <syscall/syscall.h>
#include <syscall/syscall_num.h>
#include <mm/slab.h>
#include <sched/sched.h>
#include <filesystem/fat32/fat32.h>

View File

@ -10,10 +10,10 @@
#pragma once
#include "../common/cpu.h"
#include "../common/glib.h"
#include "../mm/mm.h"
#include "../syscall/syscall.h"
#include <common/cpu.h>
#include <common/glib.h>
#include <mm/mm.h>
#include <syscall/syscall.h>
#include "ptrace.h"
#include <common/errno.h>
#include <filesystem/VFS/VFS.h>