1 /* Wrapper as usleep takes 'useconds_t', an unsigned integer type, as argument. */
2 
3 #include <unistd.h>
4 
5 void
my_usleep(int t)6 my_usleep (int t)
7 {
8   usleep (t);
9 }
10