repo.or.cz
/
openal-soft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use a function to generate the up-sampler transcode matrix
[openal-soft.git]
/
include
/
almalloc.h
blob
355db7954343d08d6f91ea8c3f2d654dc028612b
1
#ifndef AL_MALLOC_H
2
#define AL_MALLOC_H
3
4
#include <stddef.h>
5
6
#ifdef __cplusplus
7
extern
"C"
{
8
#endif
9
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
);
13
14
#ifdef __cplusplus
15
}
16
#endif
17
18
#endif
/* AL_MALLOC_H */