diff options
author | peter <peter@FreeBSD.org> | 1999-06-26 12:27:01 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-06-26 12:27:01 +0000 |
commit | 301f72517827475c43ed93c958ec27bdbe1eefbc (patch) | |
tree | e903b1b7ae741cb84f74b2c302418982363d9466 /sys/boot | |
parent | 99ec5c753f9aeaf2bc2ec8a4fa52c7987f9f7c36 (diff) | |
download | FreeBSD-src-301f72517827475c43ed93c958ec27bdbe1eefbc.zip FreeBSD-src-301f72517827475c43ed93c958ec27bdbe1eefbc.tar.gz |
ABS_SET() and BSS_SET() are no longer used. The sole remaining user of
TEXT_SET() is DDB's command tables.
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/common/bootstrap.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/boot/common/bootstrap.h b/sys/boot/common/bootstrap.h index b405ac7..848e74b 100644 --- a/sys/boot/common/bootstrap.h +++ b/sys/boot/common/bootstrap.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootstrap.h,v 1.20 1999/02/04 17:06:45 dcs Exp $ + * $Id: bootstrap.h,v 1.21 1999/04/16 21:21:47 peter Exp $ */ #include <sys/types.h> @@ -238,10 +238,7 @@ extern int elf_loadmodule(char *filename, vm_offset_t dest, struct loaded_module */ /* Add an entry to a set. */ -#define TEXT_SET(set, sym) __MAKE_SET(set, sym) #define DATA_SET(set, sym) __MAKE_SET(set, sym) -#define BSS_SET(set, sym) __MAKE_SET(set, sym) -#define ABS_SET(set, sym) __MAKE_SET(set, sym) /* * Iterate over all the elements of a set. |