1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Introduce __used attribute which serves as logical conuterpart of

preexisting __unused.
This commit is contained in:
Alexander Kabaev 2004-07-28 07:03:42 +00:00
parent 1477f58850
commit 36efbf4ff7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=132782

View File

@ -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)))