11 lines
156 B
C
11 lines
156 B
C
|
|
#ifndef SELF_H_
|
||
|
|
#define SELF_H_
|
||
|
|
|
||
|
|
#define LD_API __attribute__((visibility("default")))
|
||
|
|
|
||
|
|
struct elf_image;
|
||
|
|
|
||
|
|
extern struct elf_image *get_self(void);
|
||
|
|
|
||
|
|
#endif
|