1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +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

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));