BSD 4_4 release
[unix-history] / usr / src / old / as.vax / bignum1.c
index 3c2a46a..9451594 100644 (file)
@@ -1,8 +1,11 @@
 /*
 /*
- *     Copyright (c) 1982 Regents of the University of California
+ * Copyright (c) 1982 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
  */
  */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)bignum1.c 4.3 %G%";
+static char sccsid[] = "@(#)bignum1.c  5.1 (Berkeley) 4/30/85";
 #endif not lint
 
 #include <errno.h>
 #endif not lint
 
 #include <errno.h>
@@ -374,10 +377,6 @@ bignumwrite(number, toconv)
        int     toconv;         /* one of TYP[QO FDGH] */
 {
        reg     u_int   *bp;
        int     toconv;         /* one of TYP[QO FDGH] */
 {
        reg     u_int   *bp;
-#ifdef VMS
-               int     nints;
-       reg     int     i;
-#endif VMS
 
        if (passno != 2)
                return;
 
        if (passno != 2)
                return;
@@ -395,25 +394,6 @@ bignumwrite(number, toconv)
                number = floatconvert(number, toconv);
                break;
        }
                number = floatconvert(number, toconv);
                break;
        }
-#ifdef UNIX
        bwrite((char *)bp, ty_nbyte[toconv], txtfil);
        bwrite((char *)bp, ty_nbyte[toconv], txtfil);
-#endif UNIX
-#ifdef VMS
-       /*
-        *      rrh did not check this code when the new floating point
-        *      numbers were put into the assembler, as he didn't
-        *      have access to a vms system.
-        */
-       nints = ty_nbyte[toconv] / 4;
-       for (i = 0; i < nints; i++){
-               puchar(vms_obj_ptr,-4);
-               pulong(vms_obj_ptr, bp[i]);
-       }
-       if((vms_obj_ptr-sobuf) > 400) {
-               write(objfil,sobuf,vms_obj_ptr-sobuf);
-               vms_obj_ptr = sobuf + 1;
-       }
-       return;
-#endif VMS
 }
 #endif STANDALONE
 }
 #endif STANDALONE