Browse Source

<string.h> is needed because of "memcpy".

Roberto Ierusalimschy 26 years ago
parent
commit
eec31aaca5
1 changed files with 2 additions and 1 deletions
  1. 2 1
      lparser.c

+ 2 - 1
lparser.c

@@ -1,11 +1,12 @@
 /*
-** $Id: lparser.c,v 1.7 1998/12/28 13:44:54 roberto Exp $
+** $Id: lparser.c,v 1.8 1999/01/15 11:38:33 roberto Exp roberto $
 ** LL(1) Parser and code generator for Lua
 ** See Copyright Notice in lua.h
 */
 
 
 #include <stdio.h>
+#include <string.h>
 
 #include "lauxlib.h"
 #include "ldo.h"