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
commitaf7514172cb33383409c73676e5f8b34b3b676aa (patch)
tree5b43c32f24111c42c55b3a5768fd2ab170a56290 /PC/winsound.c
parent81f329771fb265620775fd97ebeac7c69d5ba37d (diff)
downloadcpython-af7514172cb33383409c73676e5f8b34b3b676aa.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;