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

remove scm_newcell_count, scm_newcell2_count

* libguile/inline.h:
* libguile/gc.c: Remove declaration and definition of unused
  "scm_newcell_count" and "scm_newcell2_count".  Since SCM_INTERNAL is
  "extern", these symbols were not externally visible anyway, at least
  under Linux or Windows.
This commit is contained in:
Andy Wingo 2011-05-26 15:58:42 +02:00
parent 65619ebe9a
commit a8952d1fb7
2 changed files with 0 additions and 9 deletions

View file

@ -224,11 +224,6 @@ SCM_SYMBOL (sym_protected_objects, "protected-objects");
SCM_SYMBOL (sym_times, "gc-times");
/* Number of calls to SCM_NEWCELL since startup. */
unsigned scm_newcell_count;
unsigned scm_newcell2_count;
/* {Scheme Interface to GC}
*/
static SCM

View file

@ -107,10 +107,6 @@ SCM_API void scm_puts (const char *str_data, SCM port);
introduce any extraneous symbols into the public namespace. We
only need SCM_C_INLINE to be seen publically . */
extern unsigned scm_newcell2_count;
extern unsigned scm_newcell_count;
#ifndef SCM_INLINE_C_INCLUDING_INLINE_H
SCM_C_EXTERN_INLINE
#endif