diff options
Diffstat (limited to 'lzio.h')
-rw-r--r-- | lzio.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lzio.h,v 1.2 1997/11/21 19:00:46 roberto Exp roberto $ | 2 | ** $Id: lzio.h,v 1.3 1997/12/22 20:57:18 roberto Exp roberto $ |
3 | ** Buffered streams | 3 | ** Buffered streams |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -42,8 +42,8 @@ struct zio { | |||
42 | unsigned char* p; /* current position in buffer */ | 42 | unsigned char* p; /* current position in buffer */ |
43 | int (*filbuf)(ZIO* z); | 43 | int (*filbuf)(ZIO* z); |
44 | void* u; /* additional data */ | 44 | void* u; /* additional data */ |
45 | unsigned char buffer[ZBSIZE]; /* buffer */ | ||
46 | char *name; | 45 | char *name; |
46 | unsigned char buffer[ZBSIZE]; /* buffer */ | ||
47 | }; | 47 | }; |
48 | 48 | ||
49 | 49 | ||