diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-06-14 19:50:43 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-06-14 19:50:43 +0000 |
commit | 92c2555f6972b5fbc2236fe486e9432040b43812 (patch) | |
tree | e439c8a06c62d74e4ef377a3fbe94783f2943a90 /libguile/options.h | |
parent | 51fa276692198eb140365f60e516fbc8ff547f10 (diff) | |
download | guile-92c2555f6972b5fbc2236fe486e9432040b43812.tar.gz |
replace "scm_*_t" with "scm_t_*".
Diffstat (limited to 'libguile/options.h')
-rw-r--r-- | libguile/options.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/options.h b/libguile/options.h index 5ff2c4fa3..899f5eed5 100644 --- a/libguile/options.h +++ b/libguile/options.h @@ -51,7 +51,7 @@ -typedef struct scm_option_t +typedef struct scm_t_option { int type; char *name; @@ -62,10 +62,10 @@ typedef struct scm_option_t unsigned long val; /* SCM val */ char *doc; -} scm_option_t; +} scm_t_option; #if (SCM_DEBUG_DEPRECATED == 0) -# define scm_option scm_option_t +# define scm_option scm_t_option #endif #define SCM_OPTION_BOOLEAN 0 @@ -73,8 +73,8 @@ typedef struct scm_option_t #define SCM_OPTION_SCM 2 -extern SCM scm_options (SCM new_mode, scm_option_t options[], int n, const char *s); -extern void scm_init_opts (SCM (*func) (SCM), scm_option_t options[], int n); +extern SCM scm_options (SCM new_mode, scm_t_option options[], int n, const char *s); +extern void scm_init_opts (SCM (*func) (SCM), scm_t_option options[], int n); extern void scm_init_options (void); #endif /* OPTIONSH */ |