changed bss() into a macro
This commit is contained in:
parent
1c570328f0
commit
11843b44a1
|
@ -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
|
||||
|
|
|
@ -1,11 +1,5 @@
|
|||
#include "header.h"
|
||||
|
||||
bss( n)
|
||||
arith n;
|
||||
{
|
||||
fprint( codefile, BSS_FMT, (long) n);
|
||||
}
|
||||
|
||||
common(n)
|
||||
arith n;
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue