obj: add more set and namespace functions

This commit is contained in:
2023-02-25 17:57:53 +00:00
parent ef10ed5cd2
commit 8c87e78797
7 changed files with 248 additions and 5 deletions

View File

@@ -1,9 +1,16 @@
#ifndef SOCKS_COMPILER_H_
#define SOCKS_COMPILER_H_
#undef __used
#define __used __attribute__((used))
#undef __packed
#define __packed __attribute__((packed))
#undef __section
#define __section(name) __attribute__((section(name)))
#undef __aligned
#define __aligned(x) __attribute__((aligned(x)))
#endif