mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-09 23:10:43 +00:00
16 lines
138 B
C
16 lines
138 B
C
/*
|
|
# dlopen
|
|
|
|
# dlsym
|
|
|
|
Dynamic library interfaces.
|
|
|
|
TODO example.
|
|
*/
|
|
|
|
#include "common.h"
|
|
|
|
int main() {
|
|
return EXIT_SUCCESS;
|
|
}
|