10 lines
128 B
C
10 lines
128 B
C
extern void test_rpath(void);
|
|
extern void test_runpath(void);
|
|
|
|
int main(void)
|
|
{
|
|
test_rpath();
|
|
test_runpath();
|
|
return 0;
|
|
}
|