8 lines
139 B
C
8 lines
139 B
C
#ifndef _SLEEP_H
|
|
#define _SLEEP_H
|
|
|
|
void usleep(unsigned long useconds);
|
|
void nanosleep(unsigned long nseconds);
|
|
|
|
#endif // end of _SLEEP_H
|