TP-openmp/BE_OpenMP_2014/linked_list/aux.h
2023-06-22 20:19:48 +02:00

12 lines
185 B
C

struct node{
unsigned long val;
struct node *next;
};
long usecs ();
unsigned long process_node(struct node *node);
void mysleep(double sec);
void init_list(struct node **head);