/*
* returnlist2() - unset projection on the given Case Plan Node
*
* Locate all matches, using both func and obj, remove each entry from the
* list and return the claimed memory area.
*
* PARAMETERS:
* node : pointer to case plan node on which the projection is to be unset
* obj : identifies which projection must be unset
*
* RETURNS
* 0 : successful completion
* -1 : error
*/
returnlist2(node, func, obj)
void *node;
void (*func)();
void *obj;
{
}