mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-01-14 02:01:39 +00:00
15 lines
306 B
C
15 lines
306 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_thread_mutex mutex;
|
|
|
|
wget_thread_mutex_init(&mutex);
|
|
wget_thread_mutex_destroy(&mutex);
|
|
}
|