comparison alt_audio_convert.c @ 465:636796aed4e2

Build/packaging fixes.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 12 Oct 2003 19:06:44 +0000
parents 5b00e43ec23c
children 45ee760a6f5a
comparison
equal deleted inserted replaced
464:182533748715 465:636796aed4e2
22 * Frank Ranostaj 22 * Frank Ranostaj
23 * ranostaj@stud.uni-frankfurt.de 23 * ranostaj@stud.uni-frankfurt.de
24 * 24 *
25 * (This code blatantly abducted for SDL_sound. Thanks, Frank! --ryan.) 25 * (This code blatantly abducted for SDL_sound. Thanks, Frank! --ryan.)
26 */ 26 */
27
28 #if HAVE_CONFIG_H
29 # include <config.h>
30 #endif
31
32 #if SOUND_USE_ALTCVT
27 33
28 #include "alt_audio_convert.h" 34 #include "alt_audio_convert.h"
29 #include <math.h> 35 #include <math.h>
30 36
31 /* just to make sure this is defined... */ 37 /* just to make sure this is defined... */
1042 show_AudioCVT( Data ); 1048 show_AudioCVT( Data );
1043 fprintf (stderr, "\n" 1049 fprintf (stderr, "\n"
1044 "return value: %d \n\n\n", ret ); 1050 "return value: %d \n\n\n", ret );
1045 return ret; 1051 return ret;
1046 } 1052 }
1053
1054 #endif /* SOUND_USE_ALTCVT */
1055
1056 /* end of alt_audio_convert.c ... */
1057