diff options
Diffstat (limited to 'src/honeysuckle/hs_throw_error.c')
-rw-r--r-- | src/honeysuckle/hs_throw_error.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/honeysuckle/hs_throw_error.c b/src/honeysuckle/hs_throw_error.c deleted file mode 100644 index 20a4c6d..0000000 --- a/src/honeysuckle/hs_throw_error.c +++ /dev/null @@ -1,12 +0,0 @@ -#include <stdlib.h> - -#include "honeysuckle.h" - -void hs_throw_error(lua_State *L, const char *format_string, ...) -{ - va_list args; - va_start(args, format_string); - hs_vpushstring(L, format_string, args); - va_end(args); - lua_error(L); -} |