1
0
mirror of https://github.com/PDP-10/its.git synced 2026-03-18 07:52:52 +00:00

Define halves() for old C compiler which doesn't have it built in.

This commit is contained in:
Lars Brinkhoff
2019-11-19 10:38:41 +01:00
parent fbf051fadd
commit c4bce0e653

View File

@@ -84,6 +84,8 @@ typedef struct _progent progent;
# define wright(w) ((w)&0777777)
# define wcons(l,r) (((l)<<18)|((r)&0777777))
# define halves(_LH,_RH) (((_LH) << 18) | (_RH))
# define LHALF halves (0777777, 0)
# define RHALF 0777777
# define ACFIELD halves (0740, 0)