summaryrefslogtreecommitdiff
path: root/ares_version.c
blob: 25f8e77cbc52ec5b9a97fc97ae276ec7098daa7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* $Id$ */

#include "setup.h"
#include "ares.h"

const char *ares_version(int *version)
{
  if(version)
    *version = ARES_VERSION;

  return ARES_VERSION_STR;
}