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

12 lines
263 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_ocsp_db_deinit(wget_ocsp_db_init(NULL, NULL));
}