mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
bdfc77b725
This is what POSIX mandates and this also matches the behavior of modern Linux.
8 lines
143 B
C++
8 lines
143 B
C++
/*
|
|
* Copyright (c) 2024, Dan Klishch <danilklishch@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
int f();
|
|
int f() { return 2; }
|