1 /*
2  * Written by Alexander Kabaev <kan@FreeBSD.org>
3  * The file is in public domain.
4  */
5 
6 #include <sys/cdefs.h>
7 void __stack_chk_fail(void);
8 void __stack_chk_fail_local(void);
9 
10 void __hidden
11 __stack_chk_fail_local(void)
12 {
13 
14 	__stack_chk_fail();
15 }
16