/*
\funcref{fun\_arg\_tail}{void fun\_arg\_tail ()}
    {}
    {}
    {setstring()}
    {fun\_arg\_tail(), fun\_cmd\_tail()}
    {funargte.c}
    {

        This function is called when an {\em op\_arg\_tail} opcode is read in
        the binary makefile. The {\em argtail} variable is set to a duplicate
        of the string in the last pushed variable. The last pushed variable is
        then discarded.

    }
*/

#include "icm-exec.h"

void fun_arg_tail ()
{
    argtail = setstring (argtail);
}
