From: Kirk McKusick Date: Tue, 27 Jan 1981 09:02:18 +0000 (-0800) Subject: change RV8, LRV8, and IND8 to use `struct' instead of `double' assignment X-Git-Tag: BSD-4_1_snap-Snapshot-Development~2470 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/796c7f6044202701efb734393e57a80e952a78a4?hp=8066db34b68fc272935f0e43755b795c0dd1bccf change RV8, LRV8, and IND8 to use `struct' instead of `double' assignment SCCS-vsn: usr.bin/pascal/px/vars.h 1.5 --- 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(); /*