mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 17:37:00 +02:00
11 lines
169 B
C++
11 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(); }
|