1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

* Return type of scm_make_smob_type is scm_bits_t now.

This commit is contained in:
Dirk Herrmann 2001-01-15 17:15:13 +00:00
parent 322ec19d3c
commit 8a39e3fc79
4 changed files with 8 additions and 2 deletions

1
THANKS
View file

@ -25,6 +25,7 @@ For fixes or providing information which led to a fix:
Han-Wen Nienhuys
David Pirotte
Julian Satchell
Bill Schottstaedt
Dale P. Smith
Jacques A. Vidrine.
William Webber

View file

@ -1,3 +1,8 @@
2001-01-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
* smob.[ch] (scm_make_smob_type): Return type is scm_bits_t now.
Thanks to Bill Schottstaedt.
2001-01-11 Michael Livshin <mlivshin@bigfoot.com>
from Matthias Köppe:

View file

@ -275,7 +275,7 @@ scm_smob_apply_3_error (SCM smob, SCM a1, SCM a2, SCM rst)
}
long
scm_bits_t
scm_make_smob_type (char *name, scm_sizet size)
{
char *tmp;

View file

@ -143,7 +143,7 @@ extern int scm_smob_print (SCM exp, SCM port, scm_print_state *pstate);
* values using `scm_set_smob_xxx'.
*/
extern long scm_make_smob_type (char *name, scm_sizet size);
extern scm_bits_t scm_make_smob_type (char *name, scm_sizet size);
extern void scm_set_smob_mark (long tc, SCM (*mark) (SCM));
extern void scm_set_smob_free (long tc, scm_sizet (*free) (SCM));