Files
oot-vc/libc/secure_error.h
Yanis b28c406d4a Match most of libc (#80)
* started libc

* progress

* format

* match file_io.c

* match mem_funcs and math_api

* printf prog and match strtoul.c

* format

* match bsearch.c

* match ansi_fp.c

* make USE_CURRENT_LOCALE a global define

* started time.c

* match the printf function

* add splits for oot-u and oot-e

* cleanup

* review
2025-05-11 14:58:29 +02:00

19 lines
292 B
C

#ifndef _SECURE_ERROR_H
#define _SECURE_ERROR_H
#include "revolution/types.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef void (*msl_constraint_handler)(int, int, int);
void __msl_runtime_constraint_violation_s(int param1, int param2, int param3);
#ifdef __cplusplus
}
#endif
#endif