Files
mango/include/socks/compiler.h

9 lines
194 B
C
Raw Normal View History

#ifndef SOCKS_COMPILER_H_
#define SOCKS_COMPILER_H_
#define __used __attribute__((used))
2022-12-24 10:28:41 +00:00
#define __packed __attribute__((packed))
#define __section(name) __attribute__((section(name)))
#endif