mirror of
https://github.com/libretro/RetroArch
synced 2025-02-14 06:40:48 +00:00
15 lines
172 B
C
15 lines
172 B
C
|
#ifndef __EXCEPTION_HANDLER_H_
|
||
|
#define __EXCEPTION_HANDLER_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void setup_os_exceptions(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|