NetBurner 3.5.0
PDF Version
 
cc_attrs.h
1#ifndef __CC_ATTRS_H
2#define __CC_ATTRS_H
3/*NB_REVISION*/
4
5/*NB_COPYRIGHT*/
6#include <predef.h>
7
8#undef __noinline
9#undef __section
10
11#define __packed __attribute__((__packed__))
12#define __align(x) __attribute__((aligned(x)))
13#define __noinline __attribute__((noinline))
14#define __section(x) __attribute__((section(x)))
15
16
17#endif /* ----- #ifndef __CC_ATTRS_H ----- */