mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
17 lines
273 B
C++
17 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 {};
|
|
}
|
|
|
|
}
|