diff options
author | Ludovic Courtès <ludo@gnu.org> | 2008-10-11 19:25:54 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2008-10-11 19:25:54 +0200 |
commit | 074f69cdf2712420e9f1ab0ee382835ac9e9c12a (patch) | |
tree | 6952f79287269bc870ef7592d0c2294ff943cbbd /libguile/gh_io.c | |
parent | 2956b07140da269fada704dab16d99cfd81f7d0a (diff) | |
parent | 88cefbc7de86e0061b0cc4fb5417de78f7afba15 (diff) | |
download | guile-074f69cdf2712420e9f1ab0ee382835ac9e9c12a.tar.gz |
Merge branch 'master' into boehm-demers-weiser-gc
Conflicts:
libguile/Makefile.am
libguile/threads.c
Diffstat (limited to 'libguile/gh_io.c')
-rw-r--r-- | libguile/gh_io.c | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/libguile/gh_io.c b/libguile/gh_io.c deleted file mode 100644 index ccf3ff216..000000000 --- a/libguile/gh_io.c +++ /dev/null @@ -1,50 +0,0 @@ -/* Copyright (C) 1995,1996,1997, 2000, 2001, 2006, 2008 Free Software Foundation, Inc. - - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifdef HAVE_CONFIG_H -# include <config.h> -#endif - -#include "libguile/gh.h" - -#if SCM_ENABLE_DEPRECATED - -void -gh_display (SCM x) -{ - scm_display (x, scm_current_output_port ()); -} - -void -gh_write (SCM x) -{ - scm_write (x, scm_current_output_port ()); -} - -void -gh_newline () -{ - scm_newline (scm_current_output_port ()); -} - -#endif /* SCM_ENABLE_DEPRECATED */ - -/* - Local Variables: - c-file-style: "gnu" - End: -*/ |