diff options
Diffstat (limited to 'winsup/cygwin/devices.shilka')
-rw-r--r-- | winsup/cygwin/devices.shilka | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/winsup/cygwin/devices.shilka b/winsup/cygwin/devices.shilka index b7f1dfdf5..7ce4db81f 100644 --- a/winsup/cygwin/devices.shilka +++ b/winsup/cygwin/devices.shilka @@ -207,9 +207,6 @@ const device dev_sdy_storage = const device dev_sdz_storage = {"/dev/sdz", FH_SDZ, "\\Device\\Harddisk%d\\Partition%d", 1, 15, 400}; -const device dev_rawdrive_storage = -{"/dev/rawdrive", FH_RAWDRIVE, "\\DosDevices\\%c:", 0, 0, 0, 0}; - const device dev_bad_storage = {":bad:", FH_BAD, ":bad:", 0, 0, 0, 0}; #define bad_dev (&dev_bad_storage) @@ -222,7 +219,6 @@ const device *unit_devices[] = &dev_ttys_storage, &dev_floppy_storage, &dev_tcp_storage, - &dev_rawdrive_storage, &dev_tape_storage }; @@ -308,7 +304,6 @@ const device *uniq_devices[] = "/dev/sdx" = sdx {return &dev_sdx_storage;} "/dev/sdy" = sdy {return &dev_sdy_storage;} "/dev/sdz" = sdz {return &dev_sdz_storage;} -"/dev/rawdrive" = rawdrive {return &dev_rawdrive_storage;} %other {return NULL;} %% void |