1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-14 23:50:19 +02:00

Make type names char const * instead of char *. Thanks to Paul Jarc!

This commit is contained in:
Marius Vollmer 2003-10-07 15:58:19 +00:00
parent 41a80feb8a
commit da0e6c2baf
5 changed files with 10 additions and 5 deletions

View file

@ -197,7 +197,7 @@ SCM_API SCM *scm_smob_class;
SCM_API SCM scm_no_applicable_method;
/* Goops functions. */
SCM_API SCM scm_make_extended_class (char *type_name, int applicablep);
SCM_API SCM scm_make_extended_class (char const *type_name, int applicablep);
SCM_API void scm_i_inherit_applicable (SCM c);
SCM_API void scm_make_port_classes (long ptobnum, char *type_name);
SCM_API void scm_change_object_class (SCM, SCM, SCM);