Files

11 lines
135 B
C
Raw Permalink Normal View History

2026-05-31 14:34:00 -04:00
#ifndef __mutex_h__
#define __mutex_h__
#include <pthread.h>
#include <stdint.h>
void * runner (void *);
int64_t run (void);
#endif