changed bss() into a macro

This commit is contained in:
ceriel 1989-01-20 15:19:33 +00:00
parent 1c570328f0
commit 11843b44a1
2 changed files with 1 additions and 6 deletions

View file

@ -15,6 +15,7 @@ extern char *extnd_name(), *extnd_dnam(), *extnd_dlb(), *extnd_ilb(),
*extnd_part(), *extnd_cont();
#define swtxt() switchseg( SEGTXT)
#define bss(n) fprint(codefile, BSS_FMT, (long)(n))
#define SEGTXT 0
#define SEGROM 1

View file

@ -1,11 +1,5 @@
#include "header.h"
bss( n)
arith n;
{
fprint( codefile, BSS_FMT, (long) n);
}
common(n)
arith n;
{