aboutsummaryrefslogtreecommitdiff
path: root/src/sys/schedule.ll.c
blob: d9ab9546815d8a49ff5530adc2895017efc7f86d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef LL

#include "../sys/schedule.h"
#include "../lib/ll.h"
static struct LL bl = {
	.prev = 0,
	.next = 0,
};
static struct Scheduler scheduler = {
	.tasks = &bl,
};

#endif