gcc/libgomp/testsuite/libgomp.fortran/my-usleep.c
Tobias Burnus 703d8a4d39 Add libgomp.fortran/order-reproducible-*.f90
libgomp/ChangeLog:

	* testsuite/libgomp.fortran/order-reproducible-1.f90: New test
	based on libgomp.c-c++-common/order-reproducible-1.c.
	* testsuite/libgomp.fortran/order-reproducible-2.f90: Likewise.
	* testsuite/libgomp.fortran/my-usleep.c: New test.
2021-10-02 11:29:35 +02: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);
}