1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* version.h.in (SCM_MICRO_VERSION): use @--@ substitution now.

(SCM_MINOR_VERSION): use @--@ substitution now.
(SCM_MICRO_VERSION): use @--@ substitution now.
(scm_effective_version): new function prototype.
This commit is contained in:
Rob Browning 2002-12-09 00:46:16 +00:00
parent c0784b410b
commit 020bc83889

View file

@ -50,13 +50,14 @@
#define SCM_MAJOR_VERSION @GUILE_MAJOR_VERSION@
#define SCM_MINOR_VERSION @GUILE_MINOR_VERSION@
#define SCM_MICRO_VERSION @GUILE_MICRO_VERSION@
#define SCM_MAJOR_VERSION @-GUILE_MAJOR_VERSION-@
#define SCM_MINOR_VERSION @-GUILE_MINOR_VERSION-@
#define SCM_MICRO_VERSION @-GUILE_MICRO_VERSION-@
extern SCM scm_major_version (void);
extern SCM scm_minor_version (void);
extern SCM scm_micro_version (void);
extern SCM scm_effective_version (void);
extern SCM scm_version (void);
extern void scm_init_version (void);