2022-12-21 08:29:33 +00:00
|
|
|
#ifndef SOCKS_COMPILER_H_
|
|
|
|
|
#define SOCKS_COMPILER_H_
|
|
|
|
|
|
|
|
|
|
#define __used __attribute__((used))
|
2022-12-24 10:28:41 +00:00
|
|
|
#define __packed __attribute__((packed))
|
2022-12-21 08:29:33 +00:00
|
|
|
#define __section(name) __attribute__((section(name)))
|
2023-02-04 17:46:05 +00:00
|
|
|
#define __aligned(x) __attribute__((aligned(x)))
|
2022-12-21 08:29:33 +00:00
|
|
|
|
|
|
|
|
#endif
|