mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-26 17:57:16 +00:00
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@784 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
9 lines
125 B
C
9 lines
125 B
C
#ifndef DELAY_H
|
|
#define DELAY_H
|
|
|
|
void udelay(int usecs);
|
|
void mdelay(int msecs);
|
|
void delay(int secs);
|
|
|
|
#endif /* DELAY_H */
|