mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 22:32:30 +01:00
1d386b48a5
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
16 lines
247 B
C
16 lines
247 B
C
/*
|
|
* Written by Alexander Kabaev <kan@FreeBSD.org>
|
|
* The file is in public domain.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
void __stack_chk_fail(void);
|
|
void __stack_chk_fail_local(void);
|
|
|
|
void __hidden
|
|
__stack_chk_fail_local(void)
|
|
{
|
|
|
|
__stack_chk_fail();
|
|
}
|