clamav/libclamav/version.c

16 lines
298 B
C
Raw Permalink Normal View History

2008-08-03 22:11:06 +00:00
#ifdef HAVE_CONFIG_H
#include "clamav-config.h"
#endif
#include "clamav.h"
2008-08-03 22:11:06 +00:00
#include "version.h"
#ifndef REPO_VERSION
#define REPO_VERSION VERSION
#endif
/* libclamav's version is always the SVN revision (if available) */
2008-08-03 22:11:06 +00:00
const char *cl_retver(void)
{
return REPO_VERSION "" VERSION_SUFFIX;
2008-08-03 22:11:06 +00:00
}