4 echo '#define VAR(name,decl) name'
5 echo '#define EV_GENWRAP 1'
7 ) | cc -E -o - - | perl -ne '
9 push @syms, $1 if /(^\w+)/;
11 print "/* DO NOT EDIT, automatically generated by update_ev_wrap */\n",
12 "#ifndef EV_WRAP_H\n",
13 "#define EV_WRAP_H\n",
14 (map "#define $_ ((loop)->$_)\n", @syms),
17 (map "#undef $_\n", @syms),