Changes from arch/CVS synchronization
[bpt/guile.git] / libguile / gh_io.c
CommitLineData
2b829bbb 1/* Copyright (C) 1995,1996,1997, 2000, 2001, 2006 Free Software Foundation, Inc.
ee2a8b9b 2
73be1d9e
MV
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
ee2a8b9b 7 *
73be1d9e
MV
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
ee2a8b9b 12 *
73be1d9e
MV
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
92205699 15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 16 */
ee2a8b9b
JB
17\f
18
a0599745 19#include "libguile/gh.h"
ee2a8b9b 20
5c56ebe1
MV
21#if SCM_ENABLE_DEPRECATED
22
ee2a8b9b
JB
23void
24gh_display (SCM x)
25{
26 scm_display (x, scm_current_output_port ());
27}
28
4ed948d4
MD
29void
30gh_write (SCM x)
31{
32 scm_write (x, scm_current_output_port ());
33}
34
ee2a8b9b
JB
35void
36gh_newline ()
37{
38 scm_newline (scm_current_output_port ());
39}
89e00824 40
5c56ebe1
MV
41#endif /* SCM_ENABLE_DEPRECATED */
42
89e00824
ML
43/*
44 Local Variables:
45 c-file-style: "gnu"
46 End:
47*/