1 //===-- Implementation of __stack_chk_fail --------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "src/compiler/__stack_chk_fail.h" 10 #include "src/__support/OSUtil/io.h" 11 #include "src/stdlib/abort.h" 12 13 extern "C" { 14 __stack_chk_fail(void)15void __stack_chk_fail(void) { 16 LIBC_NAMESPACE::write_to_stderr("stack smashing detected\n"); 17 LIBC_NAMESPACE::abort(); 18 } 19 20 } // extern "C" 21