os/kernel/timer/timer.h
2020-07-30 21:58:23 -05:00

15 lines
164 B
C

/**
* \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