uda50 and rl11 boot blocks; 730 crud
[unix-history] / usr / src / sys / vax / stand / prf.c
index 6e6c97d..3a27766 100644 (file)
@@ -1,8 +1,9 @@
-/*     prf.c   4.2     81/03/15        */
+/*     prf.c   4.4     82/11/13        */
 
 #include "../h/param.h"
 
 #include "../h/param.h"
-#include "../h/cons.h"
-#include "../h/mtpr.h"
+
+#include "../vax/mtpr.h"
+#include "../vax/cons.h"
 
 /*
  * Scaled down version of C Library printf.
 
 /*
  * Scaled down version of C Library printf.
@@ -181,32 +182,6 @@ gets(buf)
        lp = buf;
        for (;;) {
                c = getchar() & 0177;
        lp = buf;
        for (;;) {
                c = getchar() & 0177;
-               if (c>='A' && c<='Z')
-                       c -= 'A' - 'a';
-               if (lp != buf && *(lp-1) == '\\') {
-                       lp--;
-                       if (c>='a' && c<='z') {
-                               c += 'A' - 'a';
-                               goto store;
-                       }
-                       switch ( c) {
-                       case '(':
-                               c = '{';
-                               break;
-                       case ')':
-                               c = '}';
-                               break;
-                       case '!':
-                               c = '|';
-                               break;
-                       case '^':
-                               c = '~';
-                               break;
-                       case '\'':
-                               c = '`';
-                               break;
-                       }
-               }
        store:
                switch(c) {
                case '\n':
        store:
                switch(c) {
                case '\n':