| 99 | |
| 100 | |
| 101 | static void laction (int i) { |
| 102 | signal(i, SIG_DFL); /* if another SIGINT happens before lstop, |
| 103 | terminate process (default action) */ |
| 104 | lua_sethook(globalL, lstop, LUA_MASKCALL | LUA_MASKRET | LUA_MASKCOUNT, 1); |
| 105 | } |
| 106 | |
| 107 | |
| 108 | static void print_usage (const char *badoption) { |
nothing calls this directly
no test coverage detected