mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Put the right fix in. Instead of deleting the declaration of __FBSDID, we
undef it before this definition.
This commit is contained in:
parent
126fe1249a
commit
7b4359b47d
1 changed files with 7 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue