summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-24 20:50:57 (GMT)
committerGuido van Rossum <guido@python.org>1996-05-24 20:50:57 (GMT)
commit3d86cc0dbc18958a59ce064b60912405f5f8d7ac (patch)
treea6098cb8bc28c363b2d5e9a900d7c89b9a3e0dd5 /Modules
parent8c1e150215b60855be125bb0ac7b3f2013440a1d (diff)
downloadcpython-3d86cc0dbc18958a59ce064b60912405f5f8d7ac.zip
cpython-3d86cc0dbc18958a59ce064b60912405f5f8d7ac.tar.gz
cpython-3d86cc0dbc18958a59ce064b60912405f5f8d7ac.tar.bz2
make soundex_hash static
Diffstat (limited to 'Modules')
-rw-r--r--Modules/soundex.c2
1 files changed, 1 insertions, 1 deletions
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 */