summaryrefslogtreecommitdiff
path: root/src/luac.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/luac.c')
-rw-r--r--src/luac.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/luac.c b/src/luac.c
index 68d545f1..a8d2a31b 100644
--- a/src/luac.c
+++ b/src/luac.c
@@ -1,17 +1,20 @@
/*
-** $Id: luac.c,v 1.69 2011/11/29 17:46:33 lhf Exp $
-** Lua compiler (saves bytecodes to files; also list bytecodes)
+** $Id: luac.c,v 1.71 2014/11/26 12:08:59 lhf Exp $
+** Lua compiler (saves bytecodes to files; also lists bytecodes)
** See Copyright Notice in lua.h
*/
+#define luac_c
+#define LUA_CORE
+
+#include "lprefix.h"
+
+#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#define luac_c
-#define LUA_CORE
-
#include "lua.h"
#include "lauxlib.h"