# 3 "gcc_attribute_func.c"
void deprecated_function(void)
__attribute__((__noreturn__))
__attribute__((__aligned__(8), __cold__))
__attribute__((__deprecated__("do not use while driving")));
__attribute__((__cold__))
void attribute_as_prefix(void);
void __attribute__((__cold__)) attribute_after_type_spec(void);
void *__attribute__((__cold__)) attribute_before_name(void);
void *attribute_after_name __attribute__((__cold__))(void);
void *attribute_after_parameters(void) __attribute__((__cold__));
static void __attribute__((used))
used_function(void)
{
}
static void
unused_function(void)
{
}
void
param_attrs(int arr[3] __attribute__(()) __attribute__((__deprecated__)))
{
}
void asm_function(void)
__asm__("asm_function_name")
__attribute__(()) __attribute__((__deprecated__));
void renamed_function(void)
__symbolrename(renamed_function);