jsfw/util.c

18 lines
272 B
C
Raw Normal View History

2022-08-30 17:54:56 -05:00
#include "util.h"
2022-08-30 12:08:36 -05:00
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
2022-08-30 08:37:34 -05:00
2022-08-29 17:27:03 -05:00
#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
}