summaryrefslogtreecommitdiff
path: root/libguile/hashtab.h
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2001-06-14 19:50:43 +0000
committerMarius Vollmer <mvo@zagadka.de>2001-06-14 19:50:43 +0000
commit92c2555f6972b5fbc2236fe486e9432040b43812 (patch)
treee439c8a06c62d74e4ef377a3fbe94783f2943a90 /libguile/hashtab.h
parent51fa276692198eb140365f60e516fbc8ff547f10 (diff)
downloadguile-92c2555f6972b5fbc2236fe486e9432040b43812.tar.gz
replace "scm_*_t" with "scm_t_*".
Diffstat (limited to 'libguile/hashtab.h')
-rw-r--r--libguile/hashtab.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/hashtab.h b/libguile/hashtab.h
index 64a932c61..785626c84 100644
--- a/libguile/hashtab.h
+++ b/libguile/hashtab.h
@@ -48,9 +48,9 @@
#if 0
-typedef unsigned int scm_hash_fn_t (SCM obj, unsigned int d, void *closure);
-typedef SCM scm_assoc_fn_t (SCM key, SCM alist, void *closure);
-typedef SCM scm_delete_fn_t (SCM elt, SCM list);
+typedef unsigned int scm_t_hash_fn (SCM obj, unsigned int d, void *closure);
+typedef SCM scm_t_assoc_fn (SCM key, SCM alist, void *closure);
+typedef SCM scm_t_delete_fn (SCM elt, SCM list);
#endif
extern SCM scm_c_make_hash_table (unsigned long k);