summaryrefslogtreecommitdiff
path: root/PC/winsound.c
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2003-05-22 17:22:54 +0000
committerWalter Dörwald <walter@livinglogic.de>2003-05-22 17:22:54 +0000
commitfee10040b4289560b5747d9e774e7a2d5d058605 (patch)
tree57e61632ce79c4d033b9e31e4d8731bfec0171cd /PC/winsound.c
parentd449eab1e45d2f532f9eb6c7d35545f2d9a5248a (diff)
downloadcpython-git-fee10040b4289560b5747d9e774e7a2d5d058605.tar.gz
sound_playsound() doesn't have to be visible externally,
so make it static.
Diffstat (limited to 'PC/winsound.c')
-rw-r--r--PC/winsound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/winsound.c b/PC/winsound.c
index bdc8b4c9ce..c6f3a534fa 100644
--- a/PC/winsound.c
+++ b/PC/winsound.c
@@ -73,7 +73,7 @@ PyDoc_STRVAR(sound_module_doc,
"\n"
"Beep(frequency, duration) - Make a beep through the PC speaker.");
-PyObject *
+static PyObject *
sound_playsound(PyObject *s, PyObject *args)
{
const char *sound;