mirror of
https://github.com/drasko/codezero.git
synced 2026-01-11 18:33:16 +01:00
15 lines
228 B
C
15 lines
228 B
C
/*
|
|
* System time keeping definitions
|
|
*
|
|
* Copyright (C) 2007 Bahadir Balban
|
|
*/
|
|
|
|
#ifndef __GENERIC_TIMER_H__
|
|
#define __GENERIC_TIMER_H__
|
|
|
|
extern volatile u32 jiffies;
|
|
|
|
int do_timer_irq(void);
|
|
|
|
#endif /* __GENERIC_TIMER_H__ */
|