comparison libmpcodecs/dec_audio.c @ 17635:db13b7295651

memalign segfaults when used without declaration on amd64 (default function return type is int so the pointer was trunctated to 32bits)
author aurel
date Thu, 16 Feb 2006 22:43:42 +0000
parents c5f33a8021c7
children 4231482179b6
comparison
equal deleted inserted replaced
17634:8dc8353c4ee8 17635:db13b7295651
15 #include "dec_audio.h" 15 #include "dec_audio.h"
16 #include "ad.h" 16 #include "ad.h"
17 #include "libaf/af_format.h" 17 #include "libaf/af_format.h"
18 18
19 #include "libaf/af.h" 19 #include "libaf/af.h"
20
21 #ifdef HAVE_MALLOC_H
22 #include <malloc.h>
23 #endif
20 24
21 #ifdef DYNAMIC_PLUGINS 25 #ifdef DYNAMIC_PLUGINS
22 #include <dlfcn.h> 26 #include <dlfcn.h>
23 #endif 27 #endif
24 28