mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-01-14 02:01:39 +00:00
* libwget/Makefile.am: Add libwget_encoding.la * libwget/test_linking_encoding.c: New file
13 lines
253 B
C
13 lines
253 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_local_charset_encoding();
|
|
return 0;
|
|
}
|