From 3d86cc0dbc18958a59ce064b60912405f5f8d7ac Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 24 May 1996 20:50:57 +0000 Subject: make soundex_hash static --- Modules/soundex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/soundex.c b/Modules/soundex.c index cfa9339..c1cbf70 100644 --- a/Modules/soundex.c +++ b/Modules/soundex.c @@ -21,7 +21,7 @@ static char soundex_module__doc__[] = "Perform Soundex comparisons on strings, allowing non-literal matching."; -void soundex_hash(char *str, char *result) +static void soundex_hash(char *str, char *result) { char *sptr = str; /* pointer into str */ char *rptr = result; /* pointer into result */ -- cgit v0.12