mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
17 lines
234 B
C
17 lines
234 B
C
/*
|
|
* 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;
|
|
}
|