summaryrefslogtreecommitdiff
path: root/libguile/ioext.h
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2001-11-02 00:19:12 +0000
committerMarius Vollmer <mvo@zagadka.de>2001-11-02 00:19:12 +0000
commit33b001fd89d070cc6e2d8a0d6d6c43fe90555972 (patch)
treea8a211f9c5e1e4cd8161f776b6858e3366e68aab /libguile/ioext.h
parent1dcb9876f51c1c87ee94690544e7b68b0c7893be (diff)
downloadguile-33b001fd89d070cc6e2d8a0d6d6c43fe90555972.tar.gz
Prefixed each each exported symbol with SCM_API.
Diffstat (limited to 'libguile/ioext.h')
-rw-r--r--libguile/ioext.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/libguile/ioext.h b/libguile/ioext.h
index 5cb5e2394..0b8cdf897 100644
--- a/libguile/ioext.h
+++ b/libguile/ioext.h
@@ -50,16 +50,16 @@
-extern SCM scm_ftell (SCM object);
-extern SCM scm_redirect_port (SCM into_pt, SCM from_pt);
-extern SCM scm_dup_to_fdes (SCM fd_or_port, SCM newfd);
-extern SCM scm_dup2 (SCM oldfd, SCM newfd);
-extern SCM scm_fileno (SCM port);
-extern SCM scm_isatty_p (SCM port);
-extern SCM scm_fdopen (SCM fdes, SCM modes);
-extern SCM scm_primitive_move_to_fdes (SCM port, SCM fd);
-extern SCM scm_fdes_to_ports (SCM fd);
-extern void scm_init_ioext (void);
+SCM_API SCM scm_ftell (SCM object);
+SCM_API SCM scm_redirect_port (SCM into_pt, SCM from_pt);
+SCM_API SCM scm_dup_to_fdes (SCM fd_or_port, SCM newfd);
+SCM_API SCM scm_dup2 (SCM oldfd, SCM newfd);
+SCM_API SCM scm_fileno (SCM port);
+SCM_API SCM scm_isatty_p (SCM port);
+SCM_API SCM scm_fdopen (SCM fdes, SCM modes);
+SCM_API SCM scm_primitive_move_to_fdes (SCM port, SCM fd);
+SCM_API SCM scm_fdes_to_ports (SCM fd);
+SCM_API void scm_init_ioext (void);
#endif /* SCM_IOEXT_H */