Subject: Re: Boot Numbers (was Re: NCR driver ** AGAIN **)
To: None <greywolf@captech.com>
From: John F. Woods <jfw@jfwhome.funhouse.com>
List: current-users
Date: 11/14/1995 19:40:59
> % traditionally, BSS meant "block start of segment" or some such.  It's
>   uninitialized (but cleared) data space; I always thought that was its
>   stack/heap space.

int bss_symbol;
int data_symbol = 0;
int text_symbol {
	int stack_segment_symbol;
	return 42;
}