__attribute_unused__和__attribute_used__的作用
在Linux上这样的定义如下:#define__attribute_used__ __attribute__((__used__))#define__attribute_unused__ __attribute__((__unused__))在gcc手册中找到了有关的解释:unused:This attribute, attached to a function, mean...