Files
clamav/libclamav/version.c
Tomasz Kojm acc0e06a5c include clamav.h for cl_retver() prototype
git-svn: trunk@4095
2008-08-09 09:58:13 +00:00

16 lines
277 B
C

#ifdef HAVE_CONFIG_H
#include "clamav-config.h"
#endif
#include "clamav.h"
#include "version.h"
#ifndef REPO_VERSION
#define REPO_VERSION VERSION
#endif
/* libclamav's version is always the SVN revision (if available) */
const char *cl_retver(void)
{
return REPO_VERSION;
}