mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-24 10:03:05 +00:00
16 lines
244 B
C
16 lines
244 B
C
|
// Copyright 2019 - Omar Sandoval
|
||
|
// SPDX-License-Identifier: GPL-3.0+
|
||
|
|
||
|
#ifndef DRGN_SYMBOL_H
|
||
|
#define DRGN_SYMBOL_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
struct drgn_symbol {
|
||
|
const char *name;
|
||
|
uint64_t address;
|
||
|
uint64_t size;
|
||
|
};
|
||
|
|
||
|
#endif /* DRGN_SYMBOL_H */
|