From 38563897a2c7705ac3ec4cdcd25d31ca7f4fa883 Mon Sep 17 00:00:00 2001 From: gijs Date: Fri, 20 Oct 2023 17:16:43 +0200 Subject: [PATCH] Remove duplicate definition of `nuScCreateScheduler` from `common.h` --- include/common.h | 1 - src/boot.c | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/common.h b/include/common.h index 671a122..38912bc 100644 --- a/include/common.h +++ b/include/common.h @@ -326,7 +326,6 @@ extern void AddHeap(void* start, u32 length); extern void __some_logging(const char* format, ...); extern void nuBoot(void); -extern void nuScCreateScheduler(u8 videoMode, u8 numFields); extern void (*nuIdleFunc)(); extern void obIdle(void*); diff --git a/src/boot.c b/src/boot.c index a619459..320b951 100644 --- a/src/boot.c +++ b/src/boot.c @@ -1,5 +1,7 @@ #include "common.h" +#include "nu/nusys.h" + extern u8 obStackMain[]; void nuBoot(void) {