aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-21 11:57:48 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-21 11:57:48 -0300
commit81a8845e4f10851693cbe438520a4c07d347a731 (patch)
treea6ef508fe25694597f618a595a60960ef6ef2e4f
parent6c283b2f4f8398322e7a9a62ec8e131852b4e015 (diff)
downloadlua-81a8845e4f10851693cbe438520a4c07d347a731.tar.gz
lua-81a8845e4f10851693cbe438520a4c07d347a731.tar.bz2
lua-81a8845e4f10851693cbe438520a4c07d347a731.zip
detail
-rw-r--r--liolib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/liolib.c b/liolib.c
index 2dc0f038..9938129e 100644
--- a/liolib.c
+++ b/liolib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: liolib.c,v 2.15 2002/08/06 18:01:50 roberto Exp roberto $ 2** $Id: liolib.c,v 2.16 2002/08/16 20:02:13 roberto Exp roberto $
3** Standard I/O (and system) library 3** Standard I/O (and system) library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -122,7 +122,7 @@ static int io_open (lua_State *L) {
122 122
123 123
124static int io_popen (lua_State *L) { 124static int io_popen (lua_State *L) {
125#ifndef POPEN 125#ifndef USE_POPEN
126 luaL_error(L, "`popen' not supported"); 126 luaL_error(L, "`popen' not supported");
127 return 0; 127 return 0;
128#else 128#else