From 70310f135bf7194be508783d9d066eae00995119 Mon Sep 17 00:00:00 2001 From: benno Date: Tue, 28 Jan 2003 10:54:31 +0000 Subject: Put the right fix in. Instead of deleting the declaration of __FBSDID, we undef it before this definition. --- sys/powerpc/include/asm.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sys/powerpc/include/asm.h b/sys/powerpc/include/asm.h index 393cc25..96fc147 100644 --- a/sys/powerpc/include/asm.h +++ b/sys/powerpc/include/asm.h @@ -77,6 +77,13 @@ #define RCSID(x) .text; .asciz x +#undef __FBSDID +#if !defined(lint) && !defined(STRIP_FBSDID) +#define __FBSDID(s) .ident s +#else +#define __FBSDID(s) /* nothing */ +#endif /* not lint and not STRIP_FBSDID */ + #define WEAK_ALIAS(alias,sym) \ .weak alias; \ alias = sym -- cgit v1.1