mirror of
https://github.com/lua/lua
synced 2025-01-13 21:09:17 +03:00
comments
This commit is contained in:
parent
8ce6f0b418
commit
7c3857cded
5
lua.c
5
lua.c
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
** $Id: lua.c,v 1.115 2003/01/29 10:27:07 roberto Exp roberto $
|
** $Id: lua.c,v 1.116 2003/01/29 13:23:45 roberto Exp roberto $
|
||||||
** Lua stand-alone interpreter
|
** Lua stand-alone interpreter
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
@ -26,6 +26,9 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
** definition of `isatty'
|
||||||
|
*/
|
||||||
#ifdef _POSIX_C_SOURCE
|
#ifdef _POSIX_C_SOURCE
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#else
|
#else
|
||||||
|
6
lvm.c
6
lvm.c
@ -1,15 +1,17 @@
|
|||||||
/*
|
/*
|
||||||
** $Id: lvm.c,v 1.279 2003/02/28 19:45:15 roberto Exp roberto $
|
** $Id: lvm.c,v 1.280 2003/03/06 19:37:42 roberto Exp roberto $
|
||||||
** Lua virtual machine
|
** Lua virtual machine
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
/* needed only when `lua_number2str' uses `sprintf' */
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#define lvm_c
|
#define lvm_c
|
||||||
|
|
||||||
#include "lua.h"
|
#include "lua.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user