2022-08-30 08:37:34 -05:00
|
|
|
#include<limits.h>
|
|
|
|
#include<stdarg.h>
|
|
|
|
#include<stdio.h>
|
|
|
|
#include<stdlib.h>
|
|
|
|
|
2022-08-29 17:27:03 -05:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
#ifndef __has_builtin
|
|
|
|
#define __has_builtin(_) 0
|
|
|
|
#endif
|
|
|
|
|
2022-08-30 08:37:34 -05:00
|
|
|
void panicf(const char *fmt, ...) {
|
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
vprintf(fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
exit(1);
|
2022-08-29 17:27:03 -05:00
|
|
|
}
|