18 lines
271 B
C
18 lines
271 B
C
|
/*
|
||
|
* Written by Alexander Kabaev <kan@FreeBSD.org>
|
||
|
* The file is in public domain.
|
||
|
*/
|
||
|
|
||
|
#include <sys/cdefs.h>
|
||
|
__FBSDID("$FreeBSD$");
|
||
|
|
||
|
void __stack_chk_fail(void);
|
||
|
void __stack_chk_fail_local(void);
|
||
|
|
||
|
void __hidden
|
||
|
__stack_chk_fail_local(void)
|
||
|
{
|
||
|
|
||
|
__stack_chk_fail();
|
||
|
}
|