| 3743 | static char check_ptr_size2[ sizeof(char *) <= sizeof(void *) ? 1 : -1 ]; |
| 3744 | |
| 3745 | void function_run_actions( FUNCTION * function, FRAME * frame, STACK * s, |
| 3746 | string * out ) |
| 3747 | { |
| 3748 | *(string * *)stack_allocate( s, sizeof( string * ) ) = out; |
| 3749 | list_free( function_run( function, frame, s ) ); |
| 3750 | stack_deallocate( s, sizeof( string * ) ); |
| 3751 | } |
| 3752 | |
| 3753 | /* |
| 3754 | * WARNING: The instruction set is tuned for Jam and is not really generic. Be |
no test coverage detected