diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-10-02 16:21:09 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-10-02 16:21:09 -0300 |
commit | c7cf92e6f318823406e40ad6016e5ccb4e041c72 (patch) | |
tree | 9d9005c540203ddfa9d484a5e789bab6e704bb73 /lfunc.c | |
parent | a62d39aa1ce033922c088611f9443a0a271ae427 (diff) | |
download | lua-c7cf92e6f318823406e40ad6016e5ccb4e041c72.tar.gz lua-c7cf92e6f318823406e40ad6016e5ccb4e041c72.tar.bz2 lua-c7cf92e6f318823406e40ad6016e5ccb4e041c72.zip |
avoid unecessary includes of `stdlib'
Diffstat (limited to 'lfunc.c')
-rw-r--r-- | lfunc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,11 +1,11 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lfunc.c,v 1.66 2003/02/11 10:46:24 roberto Exp roberto $ | 2 | ** $Id: lfunc.c,v 1.67 2003/03/18 12:50:04 roberto Exp roberto $ |
3 | ** Auxiliary functions to manipulate prototypes and closures | 3 | ** Auxiliary functions to manipulate prototypes and closures |
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 | 9 | ||
10 | #define lfunc_c | 10 | #define lfunc_c |
11 | 11 | ||