// Copyright 2019 - Omar Sandoval // SPDX-License-Identifier: GPL-3.0+ #ifndef DRGN_SYMBOL_H #define DRGN_SYMBOL_H #include struct drgn_symbol { const char *name; uint64_t address; uint64_t size; }; #endif /* DRGN_SYMBOL_H */