mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-02-08 16:53:21 +01:00
12 lines
207 B
C
12 lines
207 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);
|
|
}
|