Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/libgomp/testsuite/libgomp.fortran/my-usleep.c
2023-03-06 14:48:14 +01:00

9 lines
146 B
C

/* Wrapper as usleep takes 'useconds_t', an unsigned integer type, as argument. */
#include <unistd.h>
void
my_usleep (int t)
{
usleep (t);
}