diff options
author | Andy Wingo <wingo@pobox.com> | 2014-03-22 16:06:39 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2014-03-22 16:06:39 +0100 |
commit | 63b9e8b03f6eb6c87bb8fff8efa34831a69b8952 (patch) | |
tree | b1450a12d40811cf773fabe1085e8eb39eebcc71 /libguile/stackchk.c | |
parent | c2247b782a9234bb9aedee5204c30daf1d01a510 (diff) |
Fix compile warnings
* libguile/throw.c (catch): Fix bad declarations.
* libguile/stackchk.c (reset_scm_stack_checking_enabled_p): Remove
unused static function.
Diffstat (limited to 'libguile/stackchk.c')
-rw-r--r-- | libguile/stackchk.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libguile/stackchk.c b/libguile/stackchk.c index 7e2441b53..6a88c3e08 100644 --- a/libguile/stackchk.c +++ b/libguile/stackchk.c @@ -36,12 +36,6 @@ int scm_stack_checking_enabled_p; -static void -reset_scm_stack_checking_enabled_p (void *arg) -{ - scm_stack_checking_enabled_p = (int)(scm_t_bits)arg; -} - long scm_stack_size (SCM_STACKITEM *start) { |