mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
bdfc77b725
This is what POSIX mandates and this also matches the behavior of modern Linux.
10 lines
169 B
C++
10 lines
169 B
C++
/*
|
|
* Copyright (c) 2024, Dan Klishch <danilklishch@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
[[gnu::weak]] int f();
|
|
|
|
int g();
|
|
int g() { return f(); }
|