Move list_head in libc

This commit is contained in:
Enrico Fraccaroli (Galfurian)
2023-06-09 10:45:51 -04:00
parent fb559d6f1b
commit d90e7ff02b
14 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
// ============================================================================
// Setup the logging for this file (do this before any other include).
#include "klib/list_head.h"
#include "sys/list_head.h"
#include "limits.h"
#include "mem/slab.h"
#include "stddef.h"
+1 -1
View File
@@ -6,7 +6,7 @@
#include "io/debug.h"
#include "klib/ndtree.h"
#include "assert.h"
#include "klib/list_head.h"
#include "sys/list_head.h"
#include "mem/slab.h"
// ============================================================================
+1 -1
View File
@@ -11,7 +11,7 @@
#include "mem/kheap.h"
#include "mem/paging.h"
#include "klib/list_head.h"
#include "sys/list_head.h"
#include "string.h"
#include "assert.h"
#include "math.h"
+1 -1
View File
@@ -11,7 +11,7 @@
#include "mem/zone_allocator.h"
#include "mem/buddysystem.h"
#include "klib/list_head.h"
#include "sys/list_head.h"
#include "kernel.h"
#include "assert.h"
#include "mem/paging.h"
+1 -1
View File
@@ -12,7 +12,7 @@
#include "hardware/timer.h"
#include "process/prio.h"
#include "assert.h"
#include "klib/list_head.h"
#include "sys/list_head.h"
#include "process/wait.h"
#include "process/scheduler.h"
#include "process/scheduler_feedback.h"