source: sbliveos2/trunk/include/asm/delay.h@ 145

Last change on this file since 145 was 142, checked in by ktk, 25 years ago

Import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 369 bytes
Line 
1/* $Id: delay.h 142 2000-04-23 14:55:46Z ktk $ */
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.