2021-02-01 07:27:10 +01:00
|
|
|
format ELF
|
|
|
|
|
|
|
|
include "__lib__.inc"
|
|
|
|
|
|
|
|
fun equ http_free
|
|
|
|
fun_str equ 'free'
|
|
|
|
|
2021-04-23 22:54:03 +02:00
|
|
|
section '.text'
|
2021-02-01 07:27:10 +01:00
|
|
|
|
|
|
|
fun_name db fun_str, 0
|
|
|
|
|
|
|
|
section '.data'
|
|
|
|
|
|
|
|
extrn lib_name
|
|
|
|
public fun
|
|
|
|
|
|
|
|
fun dd fun_name
|
|
|
|
lib dd lib_name
|