| 1 | #pragma once |
|---|---|
| 2 | #include <stdint.h> |
| 3 | |
| 4 | struct sym { |
| 5 | uint64_t addr; |
| 6 | const char *name; |
| 7 | }; |
| 8 | |
| 9 | extern const struct sym syms[]; |
| 10 | extern const uint64_t syms_len; |
| 11 |
| 1 | #pragma once |
|---|---|
| 2 | #include <stdint.h> |
| 3 | |
| 4 | struct sym { |
| 5 | uint64_t addr; |
| 6 | const char *name; |
| 7 | }; |
| 8 | |
| 9 | extern const struct sym syms[]; |
| 10 | extern const uint64_t syms_len; |
| 11 |