winamp/Src/nu/nosec.c
2024-09-24 14:54:57 +02:00

12 lines
150 B
C

#ifdef __cplusplus
extern "C" {
#endif
void __cdecl __security_error_handler(
int code,
void *data)
{
_exit(3);
}
#ifdef __cplusplus
}
#endif