mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-20 00:29:50 +00:00
1 line
432 B
Plaintext
1 line
432 B
Plaintext
|
/* Conformance Test 20.5.0.1: Verification of difftime function */
#include <stddef.h>
#include <time.h>
main ()
{
double d1;
time_t t1, t0;
long L;
t0 = time (NULL);
for (L = 0; L < 50000; L++)
;
t1 = time (NULL);
d1 = difftime (t1, t0);
if (d1 < 0)
goto Fail;
printf ("Passed Conformance Test 20.5.0.1\n");
return;
Fail:
printf ("Failed Conformance Test 20.5.0.1\n");
}
|