summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--stream/stream.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/stream/stream.h b/stream/stream.h
index dfe545bd30..4ae0e1e6a0 100644
--- a/stream/stream.h
+++ b/stream/stream.h
@@ -290,15 +290,6 @@ inline static uint64_t stream_read_qword_le(stream_t *s)
return y;
}
-inline static unsigned int stream_read_int24(stream_t *s)
-{
- unsigned int y;
- y = stream_read_char(s);
- y = (y << 8) | stream_read_char(s);
- y = (y << 8) | stream_read_char(s);
- return y;
-}
-
unsigned char *stream_read_line(stream_t *s, unsigned char *mem, int max,
int utf16);