* readline.scm: moved to ./ice-9/
[bpt/guile.git] / libguile / gh_io.c
CommitLineData
58ade102 1/* Copyright (C) 1995,1996,1997, 2000, 2001 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
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
ee2a8b9b
JB
17\f
18
a0599745 19#include "libguile/gh.h"
ee2a8b9b
JB
20
21void
22gh_display (SCM x)
23{
24 scm_display (x, scm_current_output_port ());
25}
26
4ed948d4
MD
27void
28gh_write (SCM x)
29{
30 scm_write (x, scm_current_output_port ());
31}
32
ee2a8b9b
JB
33void
34gh_newline ()
35{
36 scm_newline (scm_current_output_port ());
37}
89e00824
ML
38
39/*
40 Local Variables:
41 c-file-style: "gnu"
42 End:
43*/