diff options
Diffstat (limited to 'lvm.c')
-rw-r--r-- | lvm.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,15 +1,17 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.c,v 1.279 2003/02/28 19:45:15 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 1.280 2003/03/06 19:37:42 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 <stdarg.h> | 8 | #include <stdarg.h> |
9 | #include <stdio.h> | ||
10 | #include <stdlib.h> | 9 | #include <stdlib.h> |
11 | #include <string.h> | 10 | #include <string.h> |
12 | 11 | ||
12 | /* needed only when `lua_number2str' uses `sprintf' */ | ||
13 | #include <stdio.h> | ||
14 | |||
13 | #define lvm_c | 15 | #define lvm_c |
14 | 16 | ||
15 | #include "lua.h" | 17 | #include "lua.h" |