From 2d82b1822f94f393fa3b49cda65c24bff922a69e Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Thu, 27 Mar 2003 20:08:20 +0000 Subject: [PATCH] * gh.h: fix various preprocessor usages of new public symbols to expect 0 or 1 values rather than 1 or undefined. i.e. change #ifdef to #if, etc. --- libguile/gh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/gh.h b/libguile/gh.h index 316a5a2a9..c88e24740 100644 --- a/libguile/gh.h +++ b/libguile/gh.h @@ -109,7 +109,7 @@ SCM_API void gh_set_substr(char *src, SCM dst, long start, size_t len); SCM_API SCM gh_symbol2scm(const char *symbol_str); SCM_API SCM gh_ints2scm(const int *d, long n); -#ifdef SCM_HAVE_ARRAYS +#if SCM_HAVE_ARRAYS SCM_API SCM gh_chars2byvect(const char *d, long n); SCM_API SCM gh_shorts2svect(const short *d, long n); SCM_API SCM gh_longs2ivect(const long *d, long n);