Serenity Operating System
1/*
2 * Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#pragma once
8
9#include <AK/DistinctNumeric.h>
10
11namespace Kernel {
12
13AK_TYPEDEF_DISTINCT_ORDERED_ID(unsigned, MajorNumber);
14AK_TYPEDEF_DISTINCT_ORDERED_ID(unsigned, MinorNumber);
15
16}