| 250 | #define LISTPTR_ALIGN ( ( LISTPTR_ALIGN_BASE > sizeof( LIST * ) ) ? sizeof( LIST * ) : LISTPTR_ALIGN_BASE ) |
| 251 | |
| 252 | static void check_alignment( STACK * s ) |
| 253 | { |
| 254 | assert( (size_t)s->data % LISTPTR_ALIGN == 0 ); |
| 255 | } |
| 256 | |
| 257 | void * stack_allocate( STACK * s, int32_t size ) |
| 258 | { |
no outgoing calls
no test coverage detected