add DEL as an erase character
[unix-history] / usr / src / sys / vax / stand / rk.c
index 30174eb..22461c7 100644 (file)
@@ -1,15 +1,23 @@
-/*     rk.c    4.5     82/07/15        */
+/*
+ * Copyright (c) 1982 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ *
+ *     @(#)rk.c        6.2 (Berkeley) %G%
+ */
 
 /*
  * RK611/RK07
  */
 
 /*
  * RK611/RK07
  */
+#include "../machine/pte.h"
 
 #include "../h/param.h"
 
 #include "../h/param.h"
-#include "../h/rkreg.h"
 #include "../h/inode.h"
 #include "../h/inode.h"
-#include "../h/pte.h"
-#include "../h/ubareg.h"
 #include "../h/fs.h"
 #include "../h/fs.h"
+
+#include "../vaxuba/ubareg.h"
+#include "../vaxuba/rkreg.h"
+
 #include "saio.h"
 #include "savax.h"
 
 #include "saio.h"
 #include "savax.h"
 
@@ -89,3 +97,13 @@ rkwait(rkaddr)
        while ((rkaddr->rkcs1 & RK_CRDY) == 0)
                ;
 }
        while ((rkaddr->rkcs1 & RK_CRDY) == 0)
                ;
 }
+
+/*ARGSUSED*/
+rkioctl(io, cmd, arg)
+       struct iob *io;
+       int cmd;
+       caddr_t arg;
+{
+
+       return (ECMD);
+}