mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00: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("TestOrderLib1.cpp:init");
|
|
}
|
|
|
|
StringView f();
|
|
StringView f()
|
|
{
|
|
return "TestOrderLib1.cpp"sv;
|
|
}
|