mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-02-01 04:10:48 +00:00
13 lines
248 B
C
13 lines
248 B
C
// Just a test for static linking.
|
|
// We call one function from each object file in libwget_thread
|
|
// Unresolved references should come up on linking.
|
|
|
|
#include <config.h>
|
|
#include <wget.h>
|
|
|
|
int main(void)
|
|
{
|
|
wget_ready_2_write(0, 0);
|
|
return 0;
|
|
}
|