[kernel] Minor cleanups that have been sitting

Removal of an unused header and fixing a lint warning that a define
could be unset.
This commit is contained in:
2020-11-10 01:17:58 -08:00
parent bf600a7608
commit 2e3d7b1656
2 changed files with 4 additions and 1 deletions

View File

@@ -22,6 +22,10 @@
#include "symbol_table.h"
#include "syscall.h"
#ifndef GIT_VERSION
#define GIT_VERSION
#endif
extern "C" {
void kernel_main(kernel::args::header *header);
void (*__ctors)(void);

View File

@@ -2,7 +2,6 @@
#include "j6/types.h"
#include "log.h"
#include "device_manager.h"
#include "objects/endpoint.h"
#include "syscalls/helpers.h"