comparison libao2/ao_pcm.c @ 6237:2eec40929570

warning fixes (string.h is required for memset) moved config.h at the top of the include (often avoids 10L when adding a new #include ;)
author pl
date Thu, 30 May 2002 11:53:51 +0000
parents 7e082f42497a
children 827f08ddf044
comparison
equal deleted inserted replaced
6236:2b6de6021f5e 6237:2eec40929570
1 #include "config.h"
2
1 #include <stdio.h> 3 #include <stdio.h>
2 #include <stdlib.h> 4 #include <stdlib.h>
5 #include <string.h>
3 6
4 #include "config.h"
5 #include "bswap.h" 7 #include "bswap.h"
6 #include "afmt.h" 8 #include "afmt.h"
7 #include "audio_out.h" 9 #include "audio_out.h"
8 #include "audio_out_internal.h" 10 #include "audio_out_internal.h"
9 11