2010-08-24 12:58:54 +00:00
|
|
|
/*
|
|
|
|
* Written by Alexander Kabaev <kan@FreeBSD.org>
|
|
|
|
* The file is in public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
void __stack_chk_fail(void);
|
|
|
|
|
2014-11-25 03:50:31 +00:00
|
|
|
#ifdef PIC
|
2010-08-24 12:58:54 +00:00
|
|
|
void
|
|
|
|
__stack_chk_fail_local_hidden(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
__stack_chk_fail();
|
|
|
|
}
|
|
|
|
|
|
|
|
__sym_compat(__stack_chk_fail_local, __stack_chk_fail_local_hidden, FBSD_1.0);
|
|
|
|
#endif
|