blob: 97a5b2dbec96343996f8adc6a25310e0ea4206b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* 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;
}
|