mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-01-04 01:02:01 +01:00
14 lines
225 B
C
14 lines
225 B
C
#include <stdarg.h>
|
|
#include "exception.h"
|
|
|
|
|
|
void error_display (const char *fmt, ...) {
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
EXCEPTION_TRIGGER(TRIGGER_CODE_ERROR);
|
|
va_end(args);
|
|
|
|
while (1);
|
|
}
|