1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/*
FALCON - The Falcon Programming Language.
FILE: verion.h
Confparser module version informations
-------------------------------------------------------------------
Author: Giancarlo Niccolai
Begin: 2007-07-25
-------------------------------------------------------------------
(C) Copyright 2004: the FALCON developers (see list in AUTHORS file)
See LICENSE file for licensing details.
*/
#ifndef FALCON_FEATHERS_VERSION_H
#define FALCON_FEATHERS_VERSION_H
#include <falcon/config.h>
#define VERSION_MAJOR FALCON_VERSION_MAJOR
#define VERSION_MINOR FALCON_VERSION_MINOR
#define VERSION_REVISION FALCON_VERSION_REVISION
#endif // FALCON_FEATHERS_VERSION_H
/* end of version.h */
|