diff options
author | Walter Dörwald <walter@livinglogic.de> | 2003-05-22 17:22:54 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2003-05-22 17:22:54 (GMT) |
commit | fee10040b4289560b5747d9e774e7a2d5d058605 (patch) | |
tree | 57e61632ce79c4d033b9e31e4d8731bfec0171cd /PC/winsound.c | |
parent | d449eab1e45d2f532f9eb6c7d35545f2d9a5248a (diff) | |
download | cpython-fee10040b4289560b5747d9e774e7a2d5d058605.zip cpython-fee10040b4289560b5747d9e774e7a2d5d058605.tar.gz cpython-fee10040b4289560b5747d9e774e7a2d5d058605.tar.bz2 |
sound_playsound() doesn't have to be visible externally,
so make it static.
Diffstat (limited to 'PC/winsound.c')
-rw-r--r-- | PC/winsound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/winsound.c b/PC/winsound.c index bdc8b4c..c6f3a53 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; |