mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-14 16:46:23 +00:00
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1055 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
13 lines
283 B
C
13 lines
283 B
C
/* Copyright 2000 AG Electronics Ltd. */
|
|
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
|
|
|
|
#ifndef _TIMER_H
|
|
#define __TIMER_H
|
|
|
|
unsigned long get_hz(void);
|
|
unsigned long ticks_since_boot(void);
|
|
void sleep_ticks(unsigned long);
|
|
void udelay(int);
|
|
|
|
#endif
|