mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-07 20:05:24 +01:00
8 lines
253 B
C
8 lines
253 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020 Timo Teräs <timo.teras@iki.fi>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
extern void __stack_chk_fail(void);
|
|
void __attribute__((visibility ("hidden"))) __stack_chk_fail_local(void) { __stack_chk_fail(); }
|