Update to musl 1.2.4.

This commit is contained in:
Andrius Štikonas 2023-06-12 01:09:38 +01:00
parent f531e1cc5f
commit 914b84377a
18 changed files with 77 additions and 75 deletions

View file

@ -0,0 +1,8 @@
/*
* 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(); }