1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

* version.c (scm_libguile_config_stamp): Deleted. See

corresponding change to ../ice-9/boot-9.scm.
* version.h: Delete prototype.
* Makefile.in: Regenerated.
This commit is contained in:
Jim Blandy 1999-09-11 15:05:59 +00:00
parent 4d31f0da8f
commit 6ab01c74d6
3 changed files with 2 additions and 14 deletions

View file

@ -67,7 +67,6 @@ DLLTOOL = @DLLTOOL@
GUILE_LIBS = @GUILE_LIBS@
GUILE_MAJOR_VERSION = @GUILE_MAJOR_VERSION@
GUILE_MINOR_VERSION = @GUILE_MINOR_VERSION@
GUILE_STAMP = @GUILE_STAMP@
GUILE_VERSION = @GUILE_VERSION@
LD = @LD@
LIBLOBJS = @LIBLOBJS@

View file

@ -1,4 +1,4 @@
/* Copyright (C) 1995,1996 Free Software Foundation, Inc.
/* Copyright (C) 1995,1996, 1999 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -76,16 +76,6 @@ scm_version ()
return scm_makfrom0str (GUILE_VERSION);
}
/* Return a Scheme string containing Guile's configuration stamp. */
SCM_PROC(s_libguile_config_stamp, "libguile-config-stamp", 0, 0, 0, scm_libguile_config_stamp);
SCM
scm_libguile_config_stamp ()
{
return scm_makfrom0str (GUILE_STAMP);
}

View file

@ -2,7 +2,7 @@
#ifndef VERSIONH
#define VERSIONH
/* Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc.
/* Copyright (C) 1995, 1996, 1998, 1999 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -51,7 +51,6 @@
extern SCM scm_major_version SCM_P ((void));
extern SCM scm_minor_version SCM_P ((void));
extern SCM scm_version SCM_P ((void));
extern SCM scm_libguile_config_stamp SCM_P ((void));
extern void scm_init_version SCM_P ((void));
#endif /* VERSIONH */