diff options
Diffstat (limited to 'lzio.c')
-rw-r--r-- | lzio.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lzio.c,v 1.2 1997/11/21 19:00:46 roberto Exp roberto $ | 2 | ** $Id: lzio.c,v 1.3 1997/12/22 20:57:18 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 | */ |
@@ -15,11 +15,11 @@ | |||
15 | 15 | ||
16 | /* ----------------------------------------------------- memory buffers --- */ | 16 | /* ----------------------------------------------------- memory buffers --- */ |
17 | 17 | ||
18 | static int zmfilbuf (ZIO* z) | 18 | static int zmfilbuf (ZIO* z) { |
19 | { | ||
20 | return EOZ; | 19 | return EOZ; |
21 | } | 20 | } |
22 | 21 | ||
22 | |||
23 | ZIO* zmopen (ZIO* z, char* b, int size, char *name) | 23 | ZIO* zmopen (ZIO* z, char* b, int size, char *name) |
24 | { | 24 | { |
25 | if (b==NULL) return NULL; | 25 | if (b==NULL) return NULL; |