source: GPL/include/asm/delay.h@ 18

Last change on this file since 18 was 18, checked in by vladest, 20 years ago

initial import

File size: 437 bytes
Line 
1/* $Id: delay.h,v 1.1.1.1 2003/07/02 13:56:58 eleph Exp $ */
2
3#ifndef _I386_DELAY_H
4#define _I386_DELAY_H
5
6/*
7 * Copyright (C) 1993 Linus Torvalds
8 *
9 * Delay routines calling functions in arch/i386/lib/delay.c
10 */
11
12extern void __udelay(unsigned long usecs);
13extern void __const_udelay(unsigned long usecs);
14extern void __delay(unsigned long loops);
15
16#define udelay(n) __udelay(n)
17
18#endif /* defined(_I386_DELAY_H) */
Note: See TracBrowser for help on using the repository browser.