| 3644 | static char check_ptr_size2[ sizeof(char *) <= sizeof(void *) ? 1 : -1 ]; |
| 3645 | |
| 3646 | void function_run_actions( FUNCTION * function, FRAME * frame, STACK * s, |
| 3647 | string * out ) |
| 3648 | { |
| 3649 | *(string * *)stack_allocate( s, sizeof( string * ) ) = out; |
| 3650 | list_free( function_run( function, frame, s ) ); |
| 3651 | stack_deallocate( s, sizeof( string * ) ); |
| 3652 | } |
| 3653 | |
| 3654 | /* |
| 3655 | * WARNING: The instruction set is tuned for Jam and is not really generic. Be |
no test coverage detected