86934d8736
functions. Fixes PR 33743.
19 lines
551 B
Text
19 lines
551 B
Text
$NetBSD: patch-af,v 1.1 2006/06/16 07:19:39 rillig Exp $
|
|
|
|
gcc4 does not like "static" external function declarations.
|
|
|
|
--- lib/SDLAudio/src/audio/sun/SDL_sunaudio.c.orig 2004-02-24 21:36:07.000000000 +0100
|
|
+++ lib/SDLAudio/src/audio/sun/SDL_sunaudio.c 2006-06-16 09:16:42.000000000 +0200
|
|
@@ -163,9 +163,11 @@ void DSP_WaitAudio(_THIS)
|
|
#endif
|
|
}
|
|
|
|
+static Uint8 snd2au(int sample);
|
|
+
|
|
void DSP_PlayAudio(_THIS)
|
|
{
|
|
- static Uint8 snd2au(int sample);
|
|
+
|
|
/* Write the audio data */
|
|
if ( ulaw_only ) {
|
|
/* Assuming that this->spec.freq >= 8000 Hz */
|