TP-openmp/TP1/aux.c
2023-06-22 20:19:48 +02:00

11 lines
162 B
C

#include <sys/time.h>
#include <stdio.h>
#include <stdlib.h>
long usecs (){
struct timeval t;
gettimeofday(&t,NULL);
return t.tv_sec*1000000+t.tv_usec;
}