mirror of https://github.com/nodejs/node.git
13 lines
169 B
C
13 lines
169 B
C
|
/* $Id$ */
|
||
|
|
||
|
#include "ares_setup.h"
|
||
|
#include "ares.h"
|
||
|
|
||
|
const char *ares_version(int *version)
|
||
|
{
|
||
|
if(version)
|
||
|
*version = ARES_VERSION;
|
||
|
|
||
|
return ARES_VERSION_STR;
|
||
|
}
|