Files
wget2/libwget/test_linking_xml.c
Tim Rühsen 0b29bc3978 Generate library libwget_xml
* libwget/Makefile.am: Add libwget_xml.la
* libwget/test_linking_xml.c: New file
2020-02-17 11:00:56 +01:00

12 lines
252 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_html_parse_file("", NULL, NULL, 0);
}