/* ** exec_sepand.c for 42sh ** ** Made by Seblu ** Login ** ** Started on Sat Mar 25 15:27:20 2006 Seblu ** Last update Sun Nov 12 03:46:01 2006 seblu */ #include "exec.h" void exec_sepand(s_bin_node *node) { assert(node); exec_node(node->lhs); if (node->rhs) exec_node(node->rhs); }