| 232 | #define LISTPTR_ALIGN ( ( LISTPTR_ALIGN_BASE > sizeof( LIST * ) ) ? sizeof( LIST * ) : LISTPTR_ALIGN_BASE ) |
| 233 | |
| 234 | static void check_alignment( STACK * s ) |
| 235 | { |
| 236 | assert( (size_t)s->data % LISTPTR_ALIGN == 0 ); |
| 237 | } |
| 238 | |
| 239 | void * stack_allocate( STACK * s, int size ) |
| 240 | { |
no outgoing calls
no test coverage detected