mirror of
https://github.com/autc04/Retro68.git
synced 2025-03-03 02:30:58 +00:00
14 lines
150 B
C
14 lines
150 B
C
|
/*
|
||
|
* Test program that goes with test7.so
|
||
|
*/
|
||
|
|
||
|
extern int hide_a();
|
||
|
extern int show_b();
|
||
|
|
||
|
int
|
||
|
main()
|
||
|
{
|
||
|
return hide_a(1) + show_b(1);
|
||
|
return 0;
|
||
|
}
|