BMASK was unsigned, which caused problems with some C compilers (ours)

This commit is contained in:
ceriel 1987-03-25 15:57:22 +00:00
parent 7f60f6f8c1
commit eeb5148f29

View file

@ -16,4 +16,4 @@
#define ps_sym (sp_lpseu+1)
#define ps_last ps_sym
#define BMASK 0377
#define BMASK 255 /* 0377 is unsigned, which may cause problems */