TetaTricks/code/my-fifo.h
2021-08-25 07:18:34 +02:00

7 lines
96 B
C

typedef struct {
int pid;
double timestamp;
long notused;
} Message;
double dtime(void);