0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-18 06:51:54 +00:00

CC Attribute Test: cleanup. DO NOT INCLUDE IN PRODUCTION

This commit is contained in:
Maria Matejka 2023-10-26 23:09:20 +02:00
parent 0e1fbaa5b2
commit d6241b24a2

View File

@ -274,6 +274,12 @@ rlookup(unsigned long a)
debug("Not found.\n");
}
static void
my_check(int *whatever UNUSED)
{
printf("Everything works well.\n");
}
/**
* resource_init - initialize the resource manager
*
@ -284,6 +290,7 @@ rlookup(unsigned long a)
void
resource_init(void)
{
__attribute__((cleanup(my_check))) int test = 42;
resource_sys_init();
root_pool.r.class = &pool_class;