mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
18 lines
287 B
C++
18 lines
287 B
C++
/*
|
|
* Copyright (c) 2024, Dan Klishch <danilklishch@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Format.h>
|
|
|
|
[[gnu::constructor]] static void init()
|
|
{
|
|
outln("TestOrderLib2.cpp:init");
|
|
}
|
|
|
|
StringView f();
|
|
StringView f()
|
|
{
|
|
return "TestOrderLib2.cpp"sv;
|
|
}
|