aboutsummaryrefslogtreecommitdiff
path: root/libstore/tailor.h
diff options
context:
space:
mode:
authorIgnazio Sgalmuzzo <ignaker@gmail.com>2014-02-17 22:21:31 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2014-02-18 21:33:42 -0800
commit2a685b05f91f71c3b00ee8890ebaed16839b0cd0 (patch)
treea9e96668322523efc5ca6bbeadee63fc609ed594 /libstore/tailor.h
parent8132295cfd2d26a13a6cd2f61b7f5c56ea5efaa7 (diff)
downloadhurd-2a685b05f91f71c3b00ee8890ebaed16839b0cd0.tar.gz
hurd-2a685b05f91f71c3b00ee8890ebaed16839b0cd0.tar.bz2
hurd-2a685b05f91f71c3b00ee8890ebaed16839b0cd0.zip
libstore: replaced gz decompression code with libz
Note: dropped .zip support configure.ac: added check for libz ext2fs/Makefile: linked libz fatfs/Makefile: linked libz isofs/Makefile: linked libz libstore/Makefile: linked libz libstore/do-gunzip.c: new decompression function using libz calls. libstore/gunzip.c: removed no longer needed code replaced by do_gunzip() libstore/gzip.h: deleted, no longer needed libstore/inflate.c: deleted: no longer needed libstore/tailor.h: deleted: no longer needed libstore/unzip.c: deleted: no longer needed libstore/util.c: removed no longer needed code.
Diffstat (limited to 'libstore/tailor.h')
-rw-r--r--libstore/tailor.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/libstore/tailor.h b/libstore/tailor.h
deleted file mode 100644
index d207af55..00000000
--- a/libstore/tailor.h
+++ /dev/null
@@ -1,14 +0,0 @@
-
-#ifndef get_char
-# define get_char() get_byte()
-#endif
-
-#ifndef put_char
-# define put_char(c) put_byte(c)
-#endif
-
-#include <stdio.h>
-#define fprintf(stream, fmt...) /* ignore useless error msgs */ ((void)0)
-
-void (*unzip_error) (const char *msg);
-#define error(msg) (*unzip_error) (msg)