1/* 2 * init.h 3 * 4 * Magic to set up initializers 5 */ 6 7#ifndef _INIT_H 8#define _INIT_H 1 9 10#include <inttypes.h> 11 12#define COM32_INIT(x) static const void * const __COM32_INIT \ 13 __attribute__((section(".init_array"),unused)) = (const void * const)&x 14 15#endif /* _INIT_H */ 16