13 lines
228 B
C
13 lines
228 B
C
|
// SPDX-License-Identifier: MIT
|
|||
|
//
|
|||
|
// kernel/device/null.h
|
|||
|
// NULL driver declaration.
|
|||
|
//
|
|||
|
// Copyright © 2024 Kyle J Cardoza <Kyle.Cardoza@icloud.com>
|
|||
|
|
|||
|
#pragma once
|
|||
|
|
|||
|
#include "kernel/device.h"
|
|||
|
|
|||
|
extern Device NullDevice;
|