mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Introduce __used attribute which serves as logical conuterpart of
preexisting __unused.
This commit is contained in:
parent
1477f58850
commit
36efbf4ff7
1 changed files with 2 additions and 0 deletions
|
|
@ -143,6 +143,7 @@
|
|||
#define __dead2 __attribute__((__noreturn__))
|
||||
#define __pure2 __attribute__((__const__))
|
||||
#define __unused __attribute__((__unused__))
|
||||
#define __used __attribute__((__used__))
|
||||
#define __packed __attribute__((__packed__))
|
||||
#define __aligned(x) __attribute__((__aligned__(x)))
|
||||
#define __section(x) __attribute__((__section__(x)))
|
||||
|
|
@ -151,6 +152,7 @@
|
|||
#define __dead2 __attribute__((__noreturn__))
|
||||
#define __pure2 __attribute__((__const__))
|
||||
#define __unused __attribute__((__unused__))
|
||||
#define __used __attribute__((__used__))
|
||||
#define __packed __attribute__((__packed__))
|
||||
#define __aligned(x) __attribute__((__aligned__(x)))
|
||||
#define __section(x) __attribute__((__section__(x)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue