aboutsummaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-08 15:09:16 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-08 15:09:16 -0300
commitb5b230d95cdf0b7dbe94ec1a5a8433f93ac2de17 (patch)
tree9cc4873a1a80cb02137ec54abd21ce0a858b19b7 /lapi.c
parent7d57ea70bc975922485d589c8a6d8dedaa0fba02 (diff)
downloadlua-b5b230d95cdf0b7dbe94ec1a5a8433f93ac2de17.tar.gz
lua-b5b230d95cdf0b7dbe94ec1a5a8433f93ac2de17.tar.bz2
lua-b5b230d95cdf0b7dbe94ec1a5a8433f93ac2de17.zip
fewer #include's in luaconf.h
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lapi.c b/lapi.c
index 17868b92..23488256 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,11 +1,12 @@
1/* 1/*
2** $Id: lapi.c,v 2.27 2005/02/18 12:40:02 roberto Exp roberto $ 2** $Id: lapi.c,v 2.28 2005/02/23 17:30:22 roberto Exp roberto $
3** Lua API 3** Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
7 7
8#include <assert.h> 8#include <assert.h>
9#include <math.h>
9#include <stdarg.h> 10#include <stdarg.h>
10#include <string.h> 11#include <string.h>
11 12