mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-16 18:26:42 +00:00
11 lines
225 B
C
11 lines
225 B
C
|
#ifndef __ALPHA_DELAY_H
|
||
|
#define __ALPHA_DELAY_H
|
||
|
|
||
|
extern void __delay(int loops);
|
||
|
extern void udelay(unsigned long usecs);
|
||
|
|
||
|
extern void ndelay(unsigned long nsecs);
|
||
|
#define ndelay ndelay
|
||
|
|
||
|
#endif /* defined(__ALPHA_DELAY_H) */
|