2022-08-27 19:29:43 -05:00
|
|
|
#ifndef MAIN_H
|
|
|
|
#define MAIN_H
|
2022-08-29 17:27:03 -05:00
|
|
|
#include<stdint.h>
|
|
|
|
#include<pthread.h>
|
|
|
|
#include "vec.h"
|
2022-08-27 19:29:43 -05:00
|
|
|
|
2022-08-29 17:27:03 -05:00
|
|
|
void panicf(const char * fmt, ...);
|
2022-08-27 19:29:43 -05:00
|
|
|
|
|
|
|
#endif
|