avoid unecessary includes of `stdlib'

This commit is contained in:
Roberto Ierusalimschy
2003-10-02 16:21:09 -03:00
parent a62d39aa1c
commit c7cf92e6f3
2 changed files with 4 additions and 4 deletions

View File

@@ -1,11 +1,11 @@
/* /*
** $Id: ldebug.c,v 1.154 2003/07/10 11:59:06 roberto Exp roberto $ ** $Id: ldebug.c,v 1.155 2003/07/16 20:49:02 roberto Exp roberto $
** Debug Interface ** Debug Interface
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
#include <stdlib.h> #include <stddef.h>
#include <string.h> #include <string.h>
#define ldebug_c #define ldebug_c

View File

@@ -1,11 +1,11 @@
/* /*
** $Id: lfunc.c,v 1.66 2003/02/11 10:46:24 roberto Exp roberto $ ** $Id: lfunc.c,v 1.67 2003/03/18 12:50:04 roberto Exp roberto $
** Auxiliary functions to manipulate prototypes and closures ** Auxiliary functions to manipulate prototypes and closures
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
#include <stdlib.h> #include <stddef.h>
#define lfunc_c #define lfunc_c