mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-29 16:54:14 +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);
|
||
|
}
|