freeswitch/libs/ldns/examples/ldns-version.c

17 lines
234 B
C
Raw Normal View History

2011-03-25 16:23:32 +00:00
/*
* ldns-version shows ldns's version
*
* (c) NLnet Labs, 2005 - 2008
* See the file LICENSE for the license
*/
#include "config.h"
#include <ldns/ldns.h>
int
main(void)
{
printf("%s\n", ldns_version());
return 0;
}