1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 21:10:27 +02:00

2000-05-14 Gary Houston <ghouston@arglist.com>

from Keisuke Nishida:
	* fports.c (scm_setvbuf): minor docstring fix.
	* ports.h (scm_generic_fgets): obsolete prototype deleted.
This commit is contained in:
Gary Houston 2000-05-14 10:47:39 +00:00
parent 3a9809dfde
commit 2c1ae20ebc
2 changed files with 1 additions and 3 deletions

View file

@ -143,8 +143,7 @@ SCM_DEFINE (scm_setvbuf, "setvbuf", 2, 1, 0,
"@item _IOFBF\n" "@item _IOFBF\n"
"block buffered, using a newly allocated buffer of @var{size} bytes.\n" "block buffered, using a newly allocated buffer of @var{size} bytes.\n"
"If @var{size} is omitted, a default size will be used.\n" "If @var{size} is omitted, a default size will be used.\n"
"@end table\n" "@end table")
)
#define FUNC_NAME s_scm_setvbuf #define FUNC_NAME s_scm_setvbuf
{ {
int cmode, csize; int cmode, csize;

View file

@ -288,7 +288,6 @@ extern void scm_ungets (const char *s, int n, SCM port);
extern SCM scm_peek_char (SCM port); extern SCM scm_peek_char (SCM port);
extern SCM scm_unread_char (SCM cobj, SCM port); extern SCM scm_unread_char (SCM cobj, SCM port);
extern SCM scm_unread_string (SCM str, SCM port); extern SCM scm_unread_string (SCM str, SCM port);
extern char *scm_generic_fgets (SCM port, int *len);
extern SCM scm_seek (SCM object, SCM offset, SCM whence); extern SCM scm_seek (SCM object, SCM offset, SCM whence);
extern SCM scm_truncate_file (SCM object, SCM length); extern SCM scm_truncate_file (SCM object, SCM length);
extern SCM scm_port_line (SCM port); extern SCM scm_port_line (SCM port);