| |||
| Home > Compiler-specific Features > Variable attributes | |||
The __attribute__ keyword enables you to
specify special attributes of variables or structure fields, functions,
and types. The keyword format is either:
__attribute__ ((attribute1,attribute2, ...)) __attribute__ ((__attribute1__,__attribute2__, ...))
For example:
void * Function_Attributes_malloc_0(int b) __attribute__ ((malloc)); static int b __attribute__ ((__unused__));
Table 9 summarizes the available variable attributes.
Table 11. Variable attributes supported by the compiler and their equivalents
| Variable attribute | non-attribute equivalent |
|---|---|
__attribute__((alias)) | - |
__attribute__((at( | - |
__attribute__((aligned)) | - |
__attribute__((deprecated)) | - |
__attribute__((noinline)) | |
__attribute__((packed)) | - |
__attribute__((section(" | - |
__attribute__((unused)) | - |
__attribute__((used)) | - |
__attribute__((visibility(" | - |
__attribute__((weak)) | __weak |
__attribute__((weakref(" | |
__attribute__((zeroinit)) | - |