aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-07 13:09:49 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-07 13:09:49 -0200
commit92791b9dd651b439de85bd761b47c837b78414fd (patch)
treebdf9227e671ef8ea94736d49ad5aac864d171098 /ldo.c
parent45cad43c3fedb13a5e424429fe94dc78ba01a118 (diff)
downloadlua-92791b9dd651b439de85bd761b47c837b78414fd.tar.gz
lua-92791b9dd651b439de85bd761b47c837b78414fd.tar.bz2
lua-92791b9dd651b439de85bd761b47c837b78414fd.zip
small details
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ldo.c b/ldo.c
index 10e4c744..f869f82a 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 1.6 1997/11/03 21:00:23 roberto Exp roberto $ 2** $Id: ldo.c,v 1.7 1997/11/04 15:27:53 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -7,6 +7,7 @@
7 7
8#include <setjmp.h> 8#include <setjmp.h>
9#include <stdio.h> 9#include <stdio.h>
10#include <stdlib.h>
10#include <string.h> 11#include <string.h>
11 12
12#include "ldo.h" 13#include "ldo.h"