no more use of stdio inside the core (except for `tostring'...)

This commit is contained in:
Roberto Ierusalimschy
2002-06-03 11:09:57 -03:00
parent 5094c37988
commit ff91b355f4
4 changed files with 5 additions and 11 deletions

View File

@@ -1,12 +1,10 @@
/*
** $Id: lstate.c,v 1.93 2002/05/07 17:36:56 roberto Exp roberto $
** $Id: lstate.c,v 1.94 2002/05/08 17:34:23 roberto Exp roberto $
** Global State
** See Copyright Notice in lua.h
*/
#include <stdio.h>
#include "lua.h"
#include "ldo.h"
@@ -30,7 +28,6 @@ static void close_state (lua_State *L);
** call `lua_setpanicf'
*/
static int default_panic (lua_State *L) {
fputs("unable to recover; exiting\n", stderr);
return 0;
}