jsfw/main.h

11 lines
147 B
C
Raw Normal View History

2022-08-29 18:06:25 -05:00
// vi: set ft=c
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