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

12 lines
242 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_hpkp_db_init(NULL, NULL);
}