mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
12 lines
256 B
C++
12 lines
256 B
C++
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
|
||
|
void __vtv_verify_fail (void **, void*) __attribute__((visibility ("default")));
|
||
|
|
||
|
void
|
||
|
__vtv_verify_fail (void **hash_table, const void *vtbl_ptr)
|
||
|
{
|
||
|
fprintf (stdout, "Executing alternative failure routine.\n");
|
||
|
}
|