10 lines
170 B
C
10 lines
170 B
C
#ifndef RESOLVE_H_
|
|
#define RESOLVE_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
extern void _dl_runtime_resolve(void);
|
|
extern uintptr_t dl_runtime_resolve(uintptr_t a, uintptr_t b);
|
|
|
|
#endif
|