blob: 7c4f077c76e4aa9d1837838a3a86bbed39b93d74 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// MIT License, Copyright (c) 2020 Marvin Borner
#ifndef TIMER_H
#define TIMER_H
#include <def.h>
void timer_install();
void timer_handler(); // For scheduler
#endif
|