1 2 3 4 5 6 7 8
#ifndef DELAY_H #define DELAY_H void udelay(int usecs); void mdelay(int msecs); void delay(int secs); #endif /* DELAY_H */