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

#include "setup.h"
#include "ares_version.h"

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

  return ARES_VERSION_STR;
}