blob: 9c315373b4ff60719a9cb729cdad44708a6e2884 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#include <dlfcn.h>
#include <stdlib.h>
#include "macro.h"
int main(int argc, char **argv) {
void *handles[argc - 1];
int i;
for (i = 0; i < argc - 1; i++)
assert_se(handles[i] = dlopen(argv[i + 1], RTLD_NOW));
for (i--; i >= 0; i--)
assert_se(dlclose(handles[i]) == 0);
return EXIT_SUCCESS;
}
|