diff options
Diffstat (limited to 'lib/libc/sys/stack_protector_compat.c')
-rw-r--r-- | lib/libc/sys/stack_protector_compat.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/libc/sys/stack_protector_compat.c b/lib/libc/sys/stack_protector_compat.c deleted file mode 100644 index cacb863..0000000 --- a/lib/libc/sys/stack_protector_compat.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Written by Alexander Kabaev <kan@FreeBSD.org> - * The file is in public domain. - */ - -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - -void __stack_chk_fail(void); - -#ifdef PIC -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 |