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