1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@836 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2000-07-15 13:37:03 +00:00
parent 3f3bcc697e
commit 23dd3051c0
7 changed files with 129 additions and 64 deletions

4
st.c
View file

@ -546,14 +546,14 @@ strhash(string)
static int
numcmp(x, y)
int x, y;
long x, y;
{
return x != y;
}
static int
numhash(n)
int n;
long n;
{
return n;
}