mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-14 01:10:15 +08:00
14 lines
202 B
C
14 lines
202 B
C
#ifndef __KVM_PRIVATE_h
|
|
#define __KVM_PRIVATE_h
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
const char *symbol;
|
|
uintptr_t value;
|
|
} kvm_symval_t;
|
|
|
|
extern const kvm_symval_t rtems_kvm_symbols[];
|
|
|
|
#endif
|