about summary refs log tree commit diff stats
path: root/tools/iso/kernel.soso/null.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/iso/kernel.soso/null.c')
-rw-r--r--tools/iso/kernel.soso/null.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/iso/kernel.soso/null.c b/tools/iso/kernel.soso/null.c
deleted file mode 100644
index aef2861c..00000000
--- a/tools/iso/kernel.soso/null.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include "null.h"
-#include "devfs.h"
-#include "device.h"
-#include "common.h"
-
-static BOOL null_open(File *file, uint32 flags);
-
-void initializeNull() {
-    Device device;
-    memset((uint8*)&device, 0, sizeof(Device));
-    strcpy(device.name, "null");
-    device.deviceType = FT_CharacterDevice;
-    device.open = null_open;
-
-    registerDevice(&device);
-}
-
-static BOOL null_open(File *file, uint32 flags) {
-    return TRUE;
-}