123456789101112131415161718192021222324252627282930313233343536 |
- #if defined __SSP__ || defined __SSP_ALL__
- # error "file must not be compiled with stack protection enabled on it. Use -fno-stack-protector"
- #endif
- #include <features.h>
- void __stack_chk_fail_local (void) attribute_noreturn attribute_hidden;
- void __stack_chk_fail_local (void)
- {
- __stack_chk_fail ();
- }
|