`popen' is not ANSI and therefore was removed from the basic library

This commit is contained in:
Roberto Ierusalimschy
2004-05-28 15:32:51 -03:00
parent c61bb89dba
commit e9844a4f1d
2 changed files with 2 additions and 32 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: luaconf.h,v 1.2 2004/05/10 13:58:26 roberto Exp roberto $
** $Id: luaconf.h,v 1.3 2004/05/10 17:50:51 roberto Exp roberto $
** Configuration file for Lua
** See Copyright Notice in lua.h
*/
@@ -258,16 +258,6 @@
#endif
/*
** by default, posix systems get `popen'
*/
#if defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 2
#define USE_POPEN 1
#else
#define USE_POPEN 0
#endif
#endif