aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-06-19 15:55:28 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-06-19 15:55:28 -0300
commit5a198de3c1108979406b18a7a970cd41d5d2d603 (patch)
tree4b7cfcf51bcbd14f21d623f82bbcc481e250c9c3
parentc5d7ba7347822ab873bd5af9dac2784ccaa10f36 (diff)
downloadlua-5a198de3c1108979406b18a7a970cd41d5d2d603.tar.gz
lua-5a198de3c1108979406b18a7a970cd41d5d2d603.tar.bz2
lua-5a198de3c1108979406b18a7a970cd41d5d2d603.zip
new prefix luaZ
-rw-r--r--zio.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/zio.h b/zio.h
index 8f2e45da..50e8f805 100644
--- a/zio.h
+++ b/zio.h
@@ -1,7 +1,7 @@
1/* 1/*
2* zio.h 2* zio.h
3* a generic input stream interface 3* a generic input stream interface
4* $Id: zio.h,v 1.2 1997/06/18 20:30:52 roberto Exp roberto $ 4* $Id: zio.h,v 1.3 1997/06/18 21:39:56 roberto Exp roberto $
5*/ 5*/
6 6
7#ifndef zio_h 7#ifndef zio_h
@@ -12,12 +12,12 @@
12 12
13 13
14/* For Lua only */ 14/* For Lua only */
15#define zFopen luaz_Fopen 15#define zFopen luaZ_Fopen
16#define zfopen luaz_fopen 16#define zfopen luaZ_fopen
17#define zpopen luaz_popen 17#define zpopen luaZ_popen
18#define zsopen luaz_sopen 18#define zsopen luaZ_sopen
19#define zmopen luaz_mopen 19#define zmopen luaZ_mopen
20#define zread luaz_read 20#define zread luaZ_read
21 21
22#define EOZ (-1) /* end of stream */ 22#define EOZ (-1) /* end of stream */
23 23