aboutsummaryrefslogtreecommitdiff
path: root/crypto/perlasm
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1998-12-22 15:04:48 +0000
committerRalf S. Engelschall <rse@openssl.org>1998-12-22 15:04:48 +0000
commit651d0aff98d28e2db146afa1790e9e22f3ef22db (patch)
tree064b04a2d7eddda845048c0278df8bbb068622f5 /crypto/perlasm
parent31b8d8684441e6cd5138832bb1b2ddb10acd6ba6 (diff)
downloadopenssl-651d0aff98d28e2db146afa1790e9e22f3ef22db.zip
openssl-651d0aff98d28e2db146afa1790e9e22f3ef22db.tar.gz
openssl-651d0aff98d28e2db146afa1790e9e22f3ef22db.tar.bz2
Various cleanups and fixed by Marc and Ralf to start the OpenTLS project
Diffstat (limited to 'crypto/perlasm')
-rw-r--r--crypto/perlasm/f19
1 files changed, 0 insertions, 19 deletions
diff --git a/crypto/perlasm/f b/crypto/perlasm/f
deleted file mode 100644
index 80da809..0000000
--- a/crypto/perlasm/f
+++ /dev/null
@@ -1,19 +0,0 @@
-sub out3
- {
- local($name,$p1,$p2,$p3)=@_;
-
- push(@out,"\t$name\t");
- $l=length($p1)+1;
- push(@out,$p1.",");
- $ll=4-($l+9)/8;
- $tmp1=sprintf("\t" x $ll);
- push(@out,$tmp1);
-
- $l=length($p2)+1;
- push(@out,$p2.",");
- $ll=4-($l+9)/8;
- $tmp1=sprintf("\t" x $ll);
- push(@out,$tmp1);
-
- push(@out,&conv($p3)."\n");
- }