mirror of
https://github.com/stupidcomputer/jsfw.git
synced 2024-12-27 05:47:37 -06:00
10 lines
131 B
C
10 lines
131 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
#include<stdint.h>
|
|
#include<pthread.h>
|
|
#include "vec.h"
|
|
|
|
void panicf(const char * fmt, ...);
|
|
|
|
#endif
|