diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-11-02 00:19:12 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-11-02 00:19:12 +0000 |
commit | 33b001fd89d070cc6e2d8a0d6d6c43fe90555972 (patch) | |
tree | a8a211f9c5e1e4cd8161f776b6858e3366e68aab /libguile/debug-malloc.h | |
parent | 1dcb9876f51c1c87ee94690544e7b68b0c7893be (diff) | |
download | guile-33b001fd89d070cc6e2d8a0d6d6c43fe90555972.tar.gz |
Prefixed each each exported symbol with SCM_API.
Diffstat (limited to 'libguile/debug-malloc.h')
-rw-r--r-- | libguile/debug-malloc.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libguile/debug-malloc.h b/libguile/debug-malloc.h index 1d646fcb9..f337b1193 100644 --- a/libguile/debug-malloc.h +++ b/libguile/debug-malloc.h @@ -50,14 +50,14 @@ -extern void scm_malloc_register (void *obj, const char *what); -extern void scm_malloc_unregister (void *obj); -extern void scm_malloc_reregister (void *obj, void *new, const char *what); +SCM_API void scm_malloc_register (void *obj, const char *what); +SCM_API void scm_malloc_unregister (void *obj); +SCM_API void scm_malloc_reregister (void *obj, void *new, const char *what); -extern SCM scm_malloc_stats (void); +SCM_API SCM scm_malloc_stats (void); -extern void scm_debug_malloc_prehistory (void); -extern void scm_init_debug_malloc (void); +SCM_API void scm_debug_malloc_prehistory (void); +SCM_API void scm_init_debug_malloc (void); #endif /* SCM_DEBUG_MALLOC_H */ |