summaryrefslogtreecommitdiffstats
path: root/bytecode/panic.h
blob: d9904a85a2caf6682848f2c72eaec853882861cb (plain) (blame)
1
2
3
4
5
6
7
#ifndef _PANIC_H_
#define _PANIC_H_

// Prints a message to stderr and exits the process.
void panicf(const char *, ...);

#endif