From: David Scott Date: Tue, 12 Oct 2010 09:34:04 +0000 (+0100) Subject: CA-44731: remove unused file X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b9a95cfea0b40282a80eaee0a0f04897d1657bcf;p=xcp%2Fxen-api.git CA-44731: remove unused file This is now out of sync with the other copy and will cause spurious build failures. Signed-off-by: David Scott --- diff --git a/ocaml/util/gzip.mli b/ocaml/util/gzip.mli deleted file mode 100644 index 9b87d0ef..00000000 --- a/ocaml/util/gzip.mli +++ /dev/null @@ -1,24 +0,0 @@ -(* - * Copyright (C) 2006-2009 Citrix Systems Inc. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; version 2.1 only. with the special - * exception on linking described in file LICENSE. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - *) - -(** Runs a compression process which is fed from a pipe whose entrance is passed to 'f' - and whose output is 'ofd' *) -val compress: Unix.file_descr -> (Unix.file_descr -> unit) -> unit - -(** Runs a decompression process which is fed from a pipe whose entrance is passed to 'f' - and whose output is 'ofd' *) -val decompress: Unix.file_descr -> (Unix.file_descr -> unit) -> unit - -(* Experimental decompressor which is fed from an fd and writes to a pipe *) -val decompress_passive: Unix.file_descr -> (Unix.file_descr -> unit) -> unit