1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef _DDEKIT_ATTRIBS_H #define _DDEKIT_ATTRIBS_H #ifdef __ACK__ #else #define DDEKIT_USED __attribute__((used)) #define DDEKIT_CONSTRUCTOR __attribute__((constructor)) #define DDEKIT_PUBLIC PUBLIC #define DDEKIT_PRIVATE static #endif #endif