Ignore the listening angle for the wet path sound cones
[openal-soft.git] / include / almalloc.h
blob355db7954343d08d6f91ea8c3f2d654dc028612b
1 #ifndef AL_MALLOC_H
2 #define AL_MALLOC_H
4 #include <stddef.h>
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 void *al_malloc(size_t alignment, size_t size);
11 void *al_calloc(size_t alignment, size_t size);
12 void al_free(void *ptr);
14 #ifdef __cplusplus
16 #endif
18 #endif /* AL_MALLOC_H */