aboutsummaryrefslogtreecommitdiff
path: root/lzio.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-29 09:37:41 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-29 09:37:41 -0300
commite68d0df1c6144551eedda90e0a99d850b1461df1 (patch)
tree4cb9ee1a4d6010dd01ef7853ce5a9f4a7cc7c6d2 /lzio.c
parent9b38a696d5ccd6dd98685a74e8762a69e8722840 (diff)
downloadlua-e68d0df1c6144551eedda90e0a99d850b1461df1.tar.gz
lua-e68d0df1c6144551eedda90e0a99d850b1461df1.tar.bz2
lua-e68d0df1c6144551eedda90e0a99d850b1461df1.zip
function `zsopen' is not used
Diffstat (limited to 'lzio.c')
-rw-r--r--lzio.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/lzio.c b/lzio.c
index 208bdb8b..6bbe6982 100644
--- a/lzio.c
+++ b/lzio.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lzio.c,v 1.14 2001/03/26 14:31:49 roberto Exp $ 2** $Id: lzio.c,v 1.15 2001/11/28 20:13:13 roberto Exp roberto $
3** a generic input stream interface 3** a generic input stream interface
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -33,12 +33,6 @@ ZIO* zmopen (ZIO* z, const char* b, size_t size, const char *name) {
33 return z; 33 return z;
34} 34}
35 35
36/* ------------------------------------------------------------ strings --- */
37
38ZIO* zsopen (ZIO* z, const char* s, const char *name) {
39 if (s==NULL) return NULL;
40 return zmopen(z, s, strlen(s), name);
41}
42 36
43/* -------------------------------------------------------------- FILEs --- */ 37/* -------------------------------------------------------------- FILEs --- */
44 38