chore: removed example from lib

This commit is contained in:
əlemi 2023-03-30 06:12:22 +02:00
parent 73cfe8a25a
commit f8b85e457e
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -1,34 +0,0 @@
#define _GNU_SOURCE
#include <dlfcn.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
int load_secret();
int main(int argc, char** argv) {
int secret;
Dl_info info;
if (argc > 1 && dladdr(dlopen, &info)) {
printf("> dlopen addr: %p\n", info.dli_saddr);
}
puts("> working...");
srand(42);
while (1) {
printf("> generating secret ");
fflush(stdout);
for (int i = 0; i < 20; i++) {
usleep(200 * 1000);
printf(".");
fflush(stdout);
}
secret = load_secret();
printf(" saved!\n");
}
}
int load_secret() {
return rand();
}