xref: /minix3/minix/include/ddekit/attribs.h (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc #ifndef _DDEKIT_ATTRIBS_H
2*433d6423SLionel Sambuc #define _DDEKIT_ATTRIBS_H
3*433d6423SLionel Sambuc 
4*433d6423SLionel Sambuc #ifdef __ACK__
5*433d6423SLionel Sambuc 
6*433d6423SLionel Sambuc 
7*433d6423SLionel Sambuc #else
8*433d6423SLionel Sambuc 
9*433d6423SLionel Sambuc #define DDEKIT_USED        __attribute__((used))
10*433d6423SLionel Sambuc #define DDEKIT_CONSTRUCTOR __attribute__((constructor))
11*433d6423SLionel Sambuc 
12*433d6423SLionel Sambuc 
13*433d6423SLionel Sambuc #define DDEKIT_PUBLIC PUBLIC
14*433d6423SLionel Sambuc #define DDEKIT_PRIVATE static
15*433d6423SLionel Sambuc #endif
16*433d6423SLionel Sambuc #endif
17