aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-08-10 09:56:02 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-08-10 09:56:02 -0300
commit47e666c090d02291c2f36edf1dfdfb59798b7966 (patch)
tree3a0368f7e7ba5136524a2bb9e7d9017dc6478c59
parent3059579253d784a2bfeae2de9d5854a0814bc526 (diff)
downloadlua-47e666c090d02291c2f36edf1dfdfb59798b7966.tar.gz
lua-47e666c090d02291c2f36edf1dfdfb59798b7966.tar.bz2
lua-47e666c090d02291c2f36edf1dfdfb59798b7966.zip
no need for ctype.h
-rw-r--r--lauxlib.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lauxlib.c b/lauxlib.c
index 27adcb17..3bc6f088 100644
--- a/lauxlib.c
+++ b/lauxlib.c
@@ -1,11 +1,10 @@
1/* 1/*
2** $Id: lauxlib.c,v 1.170 2007/06/22 15:33:54 roberto Exp roberto $ 2** $Id: lauxlib.c,v 1.171 2007/06/22 15:39:34 roberto Exp roberto $
3** Auxiliary functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
7 7
8#include <ctype.h>
9#include <errno.h> 8#include <errno.h>
10#include <stdarg.h> 9#include <stdarg.h>
11#include <stdio.h> 10#include <stdio.h>