void parameter on functions of arity 0

This commit is contained in:
2026-03-13 17:21:52 +01:00
parent 8026c33639
commit 5c0d02579b
13 changed files with 17 additions and 22 deletions

View File

@@ -8,6 +8,6 @@
#define SCHEDULER_H
struct cpu_status_t* scheduler_schedule(struct cpu_status_t* context);
void scheduler_init();
void scheduler_init(void);
#endif