9 lines
154 B
C
9 lines
154 B
C
|
|
#ifndef SOCKS_COMPILER_H_
|
||
|
|
#define SOCKS_COMPILER_H_
|
||
|
|
|
||
|
|
#define __used __attribute__((used))
|
||
|
|
|
||
|
|
#define __section(name) __attribute__((section(name)))
|
||
|
|
|
||
|
|
#endif
|