mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 08:43:23 +00:00
1d386b48a5
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
19 lines
308 B
C
19 lines
308 B
C
/*
|
|
* Written by Alexander Kabaev <kan@FreeBSD.org>
|
|
* The file is in public domain.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
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
|