diff options
author | Keisuke Nishida <kxn30@po.cwru.edu> | 2001-03-09 23:33:41 +0000 |
---|---|---|
committer | Keisuke Nishida <kxn30@po.cwru.edu> | 2001-03-09 23:33:41 +0000 |
commit | 783e77747821c3b79d5ea47fa6be4beb1a758253 (patch) | |
tree | d956611690471e62edf825f4818d46ec34e7bb8c /libguile/procs.c | |
parent | ffdeebc3a96aff450b61b436a355d69a1c2733f0 (diff) | |
download | guile-783e77747821c3b79d5ea47fa6be4beb1a758253.tar.gz |
Remove #include <stdio.h>. Add #include <string.h>.
Diffstat (limited to 'libguile/procs.c')
-rw-r--r-- | libguile/procs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/procs.c b/libguile/procs.c index 44a869bfb..0e59df8ad 100644 --- a/libguile/procs.c +++ b/libguile/procs.c @@ -44,7 +44,6 @@ -#include <stdio.h> #include "libguile/_scm.h" #include "libguile/objects.h" @@ -95,6 +94,7 @@ scm_make_subr_opt (const char *name, int type, SCM (*fcn) (), int set) } else { + symcell = SCM_BOOL_F; /* to avoid warning */ symbol = scm_str2symbol (name); } |