summaryrefslogtreecommitdiff
path: root/libguile/options.c
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/options.c
parent51fa276692198eb140365f60e516fbc8ff547f10 (diff)
downloadguile-92c2555f6972b5fbc2236fe486e9432040b43812.tar.gz
replace "scm_*_t" with "scm_t_*".
Diffstat (limited to 'libguile/options.c')
-rw-r--r--libguile/options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/options.c b/libguile/options.c
index f363ce866..ffdb0ff72 100644
--- a/libguile/options.c
+++ b/libguile/options.c
@@ -121,7 +121,7 @@ SCM_SYMBOL (scm_no_sym, "no");
static SCM protected_objects;
SCM
-scm_options (SCM arg, scm_option_t options[], int n, const char *s)
+scm_options (SCM arg, scm_t_option options[], int n, const char *s)
{
int i, docp = (!SCM_UNBNDP (arg) && !SCM_NULLP (arg) && !SCM_CONSP (arg));
/* Let `arg' GC protect the arguments */
@@ -212,7 +212,7 @@ scm_options (SCM arg, scm_option_t options[], int n, const char *s)
void
-scm_init_opts (SCM (*func) (SCM), scm_option_t options[], int n)
+scm_init_opts (SCM (*func) (SCM), scm_t_option options[], int n)
{
int i;