We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b9c90f commit ca125e7Copy full SHA for ca125e7
common/compress/gzip.c
@@ -30,7 +30,6 @@
30
#include <lib/misc.h>
31
#include <lib/print.h>
32
#include <mm/pmm.h>
33
-#include <fs/file.h>
34
#include <compress/gzip.h>
35
36
/* Various tuning macros. Most are fixed by the DEFLATE RFC,
common/compress/gzip.h
@@ -26,7 +26,7 @@
26
#ifndef COMPRESS__GZIP_H__
27
#define COMPRESS__GZIP_H__
28
29
-struct file_handle;
+#include <fs/file.h>
/* Check if a file handle points to gzip-compressed data (0x1F 0x8B magic). */
bool gzip_check(struct file_handle * fd);
0 commit comments