[kernel] test run sorting some includes

No functional change.
This commit is contained in:
Travis Geiselbrecht
2019-07-13 17:21:00 -07:00
parent 4aa556b837
commit df32504748
31 changed files with 109 additions and 100 deletions

View File

@@ -7,10 +7,10 @@
*/
#pragma once
#include <lk/compiler.h>
#include <stdbool.h>
#include <stddef.h>
#include <sys/types.h>
#include <lk/compiler.h>
/* command args */
typedef struct {

View File

@@ -8,9 +8,9 @@
#pragma once
#include <lk/compiler.h>
#include <platform/debug.h>
#include <stddef.h>
#include <stdio.h>
#include <platform/debug.h>
#if !defined(LK_DEBUGLEVEL)
#define LK_DEBUGLEVEL 0

View File

@@ -8,8 +8,8 @@
#pragma once
#include <lk/compiler.h>
#include <stddef.h>
#include <stdbool.h>
#include <stddef.h>
__BEGIN_CDECLS

View File

@@ -8,9 +8,9 @@
#pragma once
#include <lk/compiler.h>
#include <sys/types.h>
#include <stdbool.h>
#include <stdint.h>
#include <sys/types.h>
__BEGIN_CDECLS

View File

@@ -11,9 +11,9 @@
* a init hook that is called at increasing init levels as the system is
* initialized.
*/
#include <arch/ops.h>
#include <lk/init.h>
#include <arch/ops.h>
#include <assert.h>
#include <lk/compiler.h>
#include <lk/debug.h>

View File

@@ -10,19 +10,20 @@
* Main entry point to the OS. Initializes modules in order and creates
* the default thread.
*/
#include <lk/compiler.h>
#include <lk/debug.h>
#include <string.h>
#include <lk/main.h>
#include <app.h>
#include <arch.h>
#include <platform.h>
#include <target.h>
#include <lib/heap.h>
#include <kernel/mutex.h>
#include <kernel/novm.h>
#include <kernel/thread.h>
#include <lib/heap.h>
#include <lk/compiler.h>
#include <lk/debug.h>
#include <lk/init.h>
#include <lk/main.h>
#include <platform.h>
#include <string.h>
#include <target.h>
/* saved boot arguments from whoever loaded the system */
ulong lk_boot_args[4];