aboutsummaryrefslogtreecommitdiff
path: root/sys/base/flate/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/base/flate/internal.h')
-rw-r--r--sys/base/flate/internal.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/sys/base/flate/internal.h b/sys/base/flate/internal.h
deleted file mode 100644
index 794c7c2..0000000
--- a/sys/base/flate/internal.h
+++ /dev/null
@@ -1,39 +0,0 @@
-#pragma once
-
-#include <u.h>
-#include <base.h>
-
-#include <zlib.h>
-
-typedef struct buffer
-{
- union {
- struct z_stream_s;
- z_stream z;
- };
-
- ubyte buf[4098];
-} buffer;
-
-typedef struct flate·Reader
-{
- io·Reader rdr;
- void* impl;
-
- union {
- struct buffer;
- buffer b;
- };
-} flate·Reader;
-
-typedef struct flate·Writer
-{
- io·Writer wtr;
- void* impl;
-
- union {
- struct buffer;
- buffer b;
- };
-} flate·Writer;
-