Move HEAP_SIZE to malloc and use void instead of empty argument list

This commit is contained in:
DizzyEggg
2018-10-14 20:00:14 +02:00
parent e0bc3fd59c
commit c3113db931
11 changed files with 14 additions and 15 deletions

View File

@@ -7,7 +7,7 @@
struct Task gTasks[NUM_TASKS];
static void InsertTask(u8 newTaskId);
static u8 FindFirstActiveTask();
static u8 FindFirstActiveTask(void);
void ResetTasks(void)
{
@@ -124,7 +124,7 @@ void RunTasks(void)
}
}
static u8 FindFirstActiveTask()
static u8 FindFirstActiveTask(void)
{
u8 taskId;