stack_protector_compat.c revision 211748
1/*
2 * Written by Alexander Kabaev <kan@FreeBSD.org>
3 * The file is in public domain.
4 */
5
6#include <sys/cdefs.h>
7__FBSDID("$FreeBSD: head/lib/libc/sys/stack_protector_compat.c 211748 2010-08-24 12:58:54Z kib $");
8
9void __stack_chk_fail(void);
10
11#ifdef PIC
12void
13__stack_chk_fail_local_hidden(void)
14{
15
16	__stack_chk_fail();
17}
18
19__sym_compat(__stack_chk_fail_local, __stack_chk_fail_local_hidden, FBSD_1.0);
20#endif
21