aboutsummaryrefslogtreecommitdiff
path: root/lctype.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-10-03 13:19:23 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-10-03 13:19:23 -0300
commitd79190e27f6b43a61e490800ccae1ea4e874e7cd (patch)
tree4e7dd9b7b61ac4e167967281e1cb07801e2e7fd4 /lctype.c
parent9caf5b4f796879e16ccb2f6ebbc3887c604bc2f0 (diff)
downloadlua-d79190e27f6b43a61e490800ccae1ea4e874e7cd.tar.gz
lua-d79190e27f6b43a61e490800ccae1ea4e874e7cd.tar.bz2
lua-d79190e27f6b43a61e490800ccae1ea4e874e7cd.zip
missing 'LUA_CORE' definition
Diffstat (limited to 'lctype.c')
-rw-r--r--lctype.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lctype.c b/lctype.c
index c6eefa51..9e161601 100644
--- a/lctype.c
+++ b/lctype.c
@@ -1,9 +1,12 @@
1/* 1/*
2** $Id: lctype.c,v 1.9 2011/06/23 16:00:43 roberto Exp roberto $ 2** $Id: lctype.c,v 1.10 2011/06/24 12:25:33 roberto Exp roberto $
3** 'ctype' functions for Lua 3** 'ctype' functions for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
7#define lctype_c
8#define LUA_CORE
9
7#include "lctype.h" 10#include "lctype.h"
8 11
9#if !LUA_USE_CTYPE /* { */ 12#if !LUA_USE_CTYPE /* { */