summaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-31 06:34:10 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-31 06:34:10 +0000
commit17c3d539f008c3ad4179e520511b6a64fb4ba969 (patch)
tree6a277eed8c128f9212b0ef8316750e697701059d /st.c
parentdc136c12ee4d704de7621408ab0a5d9108284b45 (diff)
* ruby.h: use ifdef (or defined) for macro constants that may or
may not be defined to shut up gcc's -Wundef warnings. [ruby-core:08447] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index ced1f9196a..c16c3109a8 100644
--- a/st.c
+++ b/st.c
@@ -537,7 +537,7 @@ strhash(string)
h &= ~g;
}
return h;
-#elif HASH_PERL
+#elif defined(HASH_PERL)
register int val = 0;
while ((c = *string++) != '\0') {