diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-05 09:12:57 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-05 09:12:57 +0200 |
commit | 75905a9afc0ee89954ede7d08af70d1148bf0fd9 (patch) | |
tree | fc562f9890c63c4fa7087537941165393155af14 /src/xz/process.h | |
parent | Another utime() fix. (diff) | |
download | xz-75905a9afc0ee89954ede7d08af70d1148bf0fd9.tar.xz |
Various code cleanups the the xz command line tool.
It now builds with MinGW.
Diffstat (limited to 'src/xz/process.h')
-rw-r--r-- | src/xz/process.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/xz/process.h b/src/xz/process.h index 38485285..709f287d 100644 --- a/src/xz/process.h +++ b/src/xz/process.h @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -/// \file process.c +/// \file process.h /// \brief Compresses or uncompresses a file // // Copyright (C) 2007 Lasse Collin @@ -17,12 +17,6 @@ // /////////////////////////////////////////////////////////////////////////////// -#ifndef PROCESS_H -#define PROCESS_H - -#include "private.h" - - enum operation_mode { MODE_COMPRESS, MODE_DECOMPRESS, @@ -69,5 +63,3 @@ extern void coder_set_compression_settings(void); extern void process_init(void); extern void process_file(const char *filename); - -#endif |