0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/c-ares/ares_version.c
2010-04-07 01:17:49 -07:00

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;
}