From 3900a3be2155083e9f5617fcae8b5862999c0e61 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 7 Nov 2006 18:46:33 +0000 Subject: [PATCH] Remove duplicate IDTVEC macro definition, it's already defined in . --- sys/amd64/amd64/machdep.c | 2 -- sys/i386/i386/machdep.c | 2 -- 2 files changed, 4 deletions(-) diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index 54676fff37c..32c06045d4b 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -747,8 +747,6 @@ setidt(idx, func, typ, dpl, ist) ip->gd_hioffset = ((uintptr_t)func)>>16 ; } -#define IDTVEC(name) __CONCAT(X,name) - extern inthand_t IDTVEC(div), IDTVEC(dbg), IDTVEC(nmi), IDTVEC(bpt), IDTVEC(ofl), IDTVEC(bnd), IDTVEC(ill), IDTVEC(dna), IDTVEC(fpusegm), diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c index 4317eb9385c..f9da6fdbe19 100644 --- a/sys/i386/i386/machdep.c +++ b/sys/i386/i386/machdep.c @@ -1547,8 +1547,6 @@ setidt(idx, func, typ, dpl, selec) ip->gd_hioffset = ((int)func)>>16 ; } -#define IDTVEC(name) __CONCAT(X,name) - extern inthand_t IDTVEC(div), IDTVEC(dbg), IDTVEC(nmi), IDTVEC(bpt), IDTVEC(ofl), IDTVEC(bnd), IDTVEC(ill), IDTVEC(dna), IDTVEC(fpusegm),