mirror of
https://github.com/stupidcomputer/jsfw.git
synced 2024-12-26 21:42:23 -06:00
11 lines
147 B
C
11 lines
147 B
C
// vi: set ft=c
|
|
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
#include<stdint.h>
|
|
#include<pthread.h>
|
|
#include "vec.h"
|
|
|
|
void panicf(const char * fmt, ...);
|
|
|
|
#endif
|