mirror of
https://github.com/ElliotKillick/windows-vs-linux-loader-architecture
synced 2026-06-08 10:57:32 +00:00
8 lines
159 B
C
8 lines
159 B
C
#include <stdio.h>
|
|
|
|
__attribute__((constructor))
|
|
void func() {
|
|
puts("Library 2 loaded successfully from constructor of Library 1!");
|
|
//asm ("int3");
|
|
}
|