Warning: That file was not part of the compilation database. It may have many parsing errors.
| 1 | #ifndef _TOOLS_INCLUDE_LINUX_LINKAGE_H |
|---|---|
| 2 | #define _TOOLS_INCLUDE_LINUX_LINKAGE_H |
| 3 | |
| 4 | #include <linux/export.h> |
| 5 | |
| 6 | #define SYM_FUNC_START(x) .globl x; x: |
| 7 | #define SYM_FUNC_END(x) |
| 8 | #define SYM_DATA_START(x) .globl x; x: |
| 9 | #define SYM_DATA_START_LOCAL(x) x: |
| 10 | #define SYM_DATA_END(x) |
| 11 | |
| 12 | #endif /* _TOOLS_INCLUDE_LINUX_LINKAGE_H */ |
| 13 |
Warning: That file was not part of the compilation database. It may have many parsing errors.
