1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

Add missing SCM_API' for scm_take_from_input_buffers'.

* libguile/ports.h (scm_take_from_input_buffers): Add `SCM_API'.
This commit is contained in:
Ludovic Courtès 2012-05-08 12:43:06 +02:00
parent e8b21eecb1
commit 33672b0711

View file

@ -242,7 +242,8 @@ SCM_API void scm_set_port_truncate (scm_t_bits tc,
scm_t_off length));
SCM_API void scm_set_port_input_waiting (scm_t_bits tc, int (*input_waiting) (SCM));
SCM_API SCM scm_char_ready_p (SCM port);
size_t scm_take_from_input_buffers (SCM port, char *dest, size_t read_len);
SCM_API size_t scm_take_from_input_buffers (SCM port, char *dest,
size_t read_len);
SCM_API SCM scm_drain_input (SCM port);
SCM_API SCM scm_current_input_port (void);
SCM_API SCM scm_current_output_port (void);