#include "awk.h"Go to the source code of this file.
Functions | |
| NODE * | do_ext (NODE *tree) |
|
|
Definition at line 181 of file ext.c. References _, AWKNUM, ERRNO_node, make_string, tmp_number, and unref(). 00182 { 00183 const char *emsg = _("Operation Not Supported"); 00184 00185 unref(ERRNO_node->var_value); 00186 ERRNO_node->var_value = make_string((char *) emsg, strlen(emsg)); 00187 return tmp_number((AWKNUM) -1); 00188 }
|