mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-02-01 14:41:08 +00:00
* libwget/Makefile.am: Add libwget_http_parse.la * libwget/test_linking_htp_parse.c: New file
12 lines
246 B
C
12 lines
246 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_http_free_hpkp_entries(NULL);
|
|
}
|