2021-12-23 15:08:18 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2022-01-04 12:12:55 -03:00
|
|
|
#include <AK/DistinctNumeric.h>
|
2021-12-23 15:08:18 -03:00
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
|
|
|
|
TYPEDEF_DISTINCT_ORDERED_ID(unsigned, MajorNumber);
|
|
|
|
|
TYPEDEF_DISTINCT_ORDERED_ID(unsigned, MinorNumber);
|
|
|
|
|
|
|
|
|
|
}
|