From 796c7f6044202701efb734393e57a80e952a78a4 Mon Sep 17 00:00:00 2001 From: Kirk McKusick Date: Tue, 27 Jan 1981 01:02:18 -0800 Subject: [PATCH] change RV8, LRV8, and IND8 to use `struct' instead of `double' assignment SCCS-vsn: usr.bin/pascal/px/vars.h 1.5 --- usr/src/usr.bin/pascal/px/vars.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/usr/src/usr.bin/pascal/px/vars.h b/usr/src/usr.bin/pascal/px/vars.h index 22f6ece6c5..8a7f15028f 100644 --- a/usr/src/usr.bin/pascal/px/vars.h +++ b/usr/src/usr.bin/pascal/px/vars.h @@ -1,6 +1,6 @@ /* Copyright (c) 1979 Regents of the University of California */ -/* static char sccsid[] = "@(#)vars.h 1.4 %G%"; */ +/* static char sccsid[] = "@(#)vars.h 1.5 %G%"; */ #include @@ -75,11 +75,15 @@ extern syserr(); extern liberr(); /* - * stack routines + * stack routines and structures */ +struct sze8 { + char element[8]; +}; extern short pop2(); extern long pop4(); extern double pop8(); +extern struct sze8 popsze8(); extern char *pushsp(); /* -- 2.20.1