1 /************************************************************************/
4 /************************************************************************/
5 #ifndef __XY_MALLOC_H_22FA5F7D_A5C3_4D8D_B4E6_5FB954770019__
6 #define __XY_MALLOC_H_22FA5F7D_A5C3_4D8D_B4E6_5FB954770019__
8 /* xy_malloc : will do or emulate a memalign
9 * you have to use xy_free for buffers allocated with xy_malloc */
10 void *xy_malloc( int size
, int align_shift
=0);
11 void *xy_realloc( void *p
, int i_size
, int align_shift
=0 );
12 void xy_free( void * );
14 #endif // end of __XY_MALLOC_H_22FA5F7D_A5C3_4D8D_B4E6_5FB954770019__