aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-01-21 16:38:39 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-01-21 16:38:39 -0200
commiteec31aaca58eb4a92a00c28748e81ee773f51a88 (patch)
treeca60beb0d905140ffde8cf721a9a234be4c7f96d
parent595738f6fe5d1a5c55442a3096849d581a9f34a5 (diff)
downloadlua-eec31aaca58eb4a92a00c28748e81ee773f51a88.tar.gz
lua-eec31aaca58eb4a92a00c28748e81ee773f51a88.tar.bz2
lua-eec31aaca58eb4a92a00c28748e81ee773f51a88.zip
<string.h> is needed because of "memcpy".
-rw-r--r--lparser.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lparser.c b/lparser.c
index 44b3d8b5..a9f04128 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,11 +1,12 @@
1/* 1/*
2** $Id: lparser.c,v 1.7 1998/12/28 13:44:54 roberto Exp $ 2** $Id: lparser.c,v 1.8 1999/01/15 11:38:33 roberto Exp roberto $
3** LL(1) Parser and code generator for Lua 3** LL(1) Parser and code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
7 7
8#include <stdio.h> 8#include <stdio.h>
9#include <string.h>
9 10
10#include "lauxlib.h" 11#include "lauxlib.h"
11#include "ldo.h" 12#include "ldo.h"