summaryrefslogtreecommitdiff
path: root/ldebug.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-10-02 16:21:09 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-10-02 16:21:09 -0300
commitc7cf92e6f318823406e40ad6016e5ccb4e041c72 (patch)
tree9d9005c540203ddfa9d484a5e789bab6e704bb73 /ldebug.c
parenta62d39aa1ce033922c088611f9443a0a271ae427 (diff)
downloadlua-c7cf92e6f318823406e40ad6016e5ccb4e041c72.tar.gz
lua-c7cf92e6f318823406e40ad6016e5ccb4e041c72.tar.bz2
lua-c7cf92e6f318823406e40ad6016e5ccb4e041c72.zip
avoid unecessary includes of `stdlib'
Diffstat (limited to 'ldebug.c')
-rw-r--r--ldebug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldebug.c b/ldebug.c
index e7413507..7e33ee9d 100644
--- a/ldebug.c
+++ b/ldebug.c
@@ -1,11 +1,11 @@
1/* 1/*
2** $Id: ldebug.c,v 1.154 2003/07/10 11:59:06 roberto Exp roberto $ 2** $Id: ldebug.c,v 1.155 2003/07/16 20:49:02 roberto Exp roberto $
3** Debug Interface 3** Debug Interface
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
7 7
8#include <stdlib.h> 8#include <stddef.h>
9#include <string.h> 9#include <string.h>
10 10
11#define ldebug_c 11#define ldebug_c