os/kernel/timer/timer.h

15 lines
164 B
C
Raw Normal View History

2020-07-30 21:58:23 -05:00
/**
* \file
*/
#ifndef TIMER_H
#define TIMER_H
/**
* Initialize the timer
* \param freq The freqency to set the timer to
*/
void timer_init(int freq);
#endif