diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-09-17 13:53:54 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-09-17 13:53:54 -0300 |
| commit | 7eb2f1862136d72197a3935e99296c6337305415 (patch) | |
| tree | 7e5c6656dd6808e20adefcd7385f8c5d7a6b817d | |
| parent | a8a75fb7ab8e53c9f4203d36cb9d9a1000a1be68 (diff) | |
| download | lua-7eb2f1862136d72197a3935e99296c6337305415.tar.gz lua-7eb2f1862136d72197a3935e99296c6337305415.tar.bz2 lua-7eb2f1862136d72197a3935e99296c6337305415.zip | |
remove of some useless #includes
| -rw-r--r-- | lvm.c | 6 |
1 files changed, 1 insertions, 5 deletions
| @@ -1,12 +1,10 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lvm.c,v 1.60 1999/08/16 20:52:00 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 1.61 1999/09/06 13:55:09 roberto Exp roberto $ |
| 3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| 6 | 6 | ||
| 7 | 7 | ||
| 8 | #include <ctype.h> | ||
| 9 | #include <limits.h> | ||
| 10 | #include <stdio.h> | 8 | #include <stdio.h> |
| 11 | #include <stdlib.h> | 9 | #include <stdlib.h> |
| 12 | #include <string.h> | 10 | #include <string.h> |
| @@ -15,14 +13,12 @@ | |||
| 15 | #include "ldo.h" | 13 | #include "ldo.h" |
| 16 | #include "lfunc.h" | 14 | #include "lfunc.h" |
| 17 | #include "lgc.h" | 15 | #include "lgc.h" |
| 18 | #include "lmem.h" | ||
| 19 | #include "lobject.h" | 16 | #include "lobject.h" |
| 20 | #include "lopcodes.h" | 17 | #include "lopcodes.h" |
| 21 | #include "lstate.h" | 18 | #include "lstate.h" |
| 22 | #include "lstring.h" | 19 | #include "lstring.h" |
| 23 | #include "ltable.h" | 20 | #include "ltable.h" |
| 24 | #include "ltm.h" | 21 | #include "ltm.h" |
| 25 | #include "luadebug.h" | ||
| 26 | #include "lvm.h" | 22 | #include "lvm.h" |
| 27 | 23 | ||
| 28 | 24 | ||
