File: version.c

package info (click to toggle)
inn2 2.4.5-5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 8,912 kB
  • ctags: 7,860
  • sloc: ansic: 85,104; perl: 11,427; sh: 9,863; makefile: 2,498; yacc: 1,563; python: 298; lex: 252; tcl: 7
file content (13 lines) | stat: -rw-r--r-- 345 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
/*  $Id: version.c 3989 2000-10-01 01:59:45Z rra $
**
**  INN compile-time version information.
*/

#include "config.h"
#include "inn/version.h"

const int inn_version[3] = {
    INN_VERSION_MAJOR, INN_VERSION_MINOR, INN_VERSION_PATCH
};
const char inn_version_extra[]  = INN_VERSION_EXTRA;
const char inn_version_string[] = INN_VERSION_STRING;