mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-09 00:22:43 +02:00
As part of a commit series trying to make the prekernel nicer, we should move and refactor functions out of the init.cpp file if possible.
12 lines
172 B
C
12 lines
172 B
C
/*
|
|
* Copyright (c) 2024, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
u64 generate_secure_seed();
|