diff options
Diffstat (limited to 'libguile/regex-posix.h')
-rw-r--r-- | libguile/regex-posix.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/regex-posix.h b/libguile/regex-posix.h index fb8a0e997..76a0d32a6 100644 --- a/libguile/regex-posix.h +++ b/libguile/regex-posix.h @@ -46,9 +46,9 @@ #include "libguile/__scm.h" -extern long scm_tc16_regex_t; -#define SCM_RGX(X) ((regex_t *)SCM_CDR(X)) -#define SCM_RGXP(X) (SCM_CAR(X) == (SCM)scm_tc16_regex_t) +extern long scm_tc16_regex; +#define SCM_RGX(X) ((regex_t *) SCM_CDR(X)) +#define SCM_RGXP(X) (SCM_CAR (X) == (SCM) scm_tc16_regex) extern SCM scm_make_regexp SCM_P ((SCM pat, SCM flags)); SCM scm_regexp_p SCM_P ((SCM x)); |