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

        This function is called when an {\em op\_cmd\_head} opcode is read in
        the binary makefile. The {\em cmdhead} 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_cmd_head ()
{
    cmdhead = setstring (cmdhead);
}
