diff options
author | Andy Wingo <wingo@pobox.com> | 2011-11-07 16:22:55 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-11-07 16:22:55 +0100 |
commit | 891702eaef9d2554fae44ab76bcfa1a9a4bb645e (patch) | |
tree | e523ae9ee6c1fc207f1339965c2c88ab94334798 | |
parent | fca14149081889576f9f6a65f91270b4f4d611d3 (diff) | |
download | guile-891702eaef9d2554fae44ab76bcfa1a9a4bb645e.tar.gz |
ports.h: remove unimplemented declarations
* libguile/ports.h (scm_grow_port_cbuf, scm_pt_size, scm_pt_member):
Remove declarations of unimplemented functions. Move a couple of
other definitions around.
-rw-r--r-- | libguile/ports.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/libguile/ports.h b/libguile/ports.h index 6ea6c2c70..74f9f224a 100644 --- a/libguile/ports.h +++ b/libguile/ports.h @@ -267,15 +267,12 @@ scm_c_make_port_with_encoding (scm_t_bits tag, scm_t_bits stream); SCM_API SCM scm_c_make_port (scm_t_bits tag, unsigned long mode_bits, scm_t_bits stream); +SCM_API SCM scm_new_port_table_entry (scm_t_bits tag); SCM_INLINE int scm_c_lock_port (scm_t_port *entry); SCM_INLINE int scm_c_try_lock_port (scm_t_port *entry); SCM_INLINE int scm_c_unlock_port (scm_t_port *entry); -SCM_API SCM scm_new_port_table_entry (scm_t_bits tag); -SCM_API void scm_grow_port_cbuf (SCM port, size_t requested); -SCM_API SCM scm_pt_size (void); -SCM_API SCM scm_pt_member (SCM member); SCM_API void scm_port_non_buffer (scm_t_port *pt); SCM_API int scm_revealed_count (SCM port); SCM_API SCM scm_port_revealed (SCM port); @@ -338,11 +335,6 @@ SCM_API SCM scm_void_port (char * mode_str); SCM_API SCM scm_sys_make_void_port (SCM mode); SCM_INTERNAL void scm_init_ports (void); -#ifdef GUILE_DEBUG -SCM_API SCM scm_pt_size (void); -SCM_API SCM scm_pt_member (SCM member); -#endif /* GUILE_DEBUG */ - /* internal */ SCM_INTERNAL long scm_i_mode_bits (SCM modes); |