mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
16 lines
273 B
C++
16 lines
273 B
C++
/*
|
|
* Copyright (c) 2024, Andrew Kaster <akaster@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibCore/Platform/ProcessStatistics.h>
|
|
|
|
namespace Core::Platform {
|
|
|
|
ErrorOr<void> update_process_statistics(ProcessStatistics&)
|
|
{
|
|
return {};
|
|
}
|
|
|
|
}
|