diff options
author | Tor Andersson <tor@ghostscript.com> | 2005-03-30 10:45:21 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2005-03-30 10:45:21 +0200 |
commit | 5f4d61903ee8fc514ed7e23eac4d5ac6409ff760 (patch) | |
tree | a824aa883d9d5df072c17ec0a2ac4a2b5074c2c0 /stream | |
parent | ee154f16bd09a43359967f7e7b86c3677c09461d (diff) | |
download | mupdf-5f4d61903ee8fc514ed7e23eac4d5ac6409ff760.tar.xz |
rename and shuffle -- part 2
Diffstat (limited to 'stream')
-rw-r--r-- | stream/filt_dctd.c | 2 | ||||
-rw-r--r-- | stream/filt_dcte.c | 2 | ||||
-rw-r--r-- | stream/filt_faxd.c | 4 | ||||
-rw-r--r-- | stream/filt_faxdtab.c | 2 | ||||
-rw-r--r-- | stream/filt_faxe.c | 4 | ||||
-rw-r--r-- | stream/filt_faxetab.c | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/stream/filt_dctd.c b/stream/filt_dctd.c index 750f7893..ebdf2f65 100644 --- a/stream/filt_dctd.c +++ b/stream/filt_dctd.c @@ -1,6 +1,6 @@ #include <fitz.h> -#include "dctc.h" +#include "filt_dctc.h" typedef struct fz_dctd_s fz_dctd; diff --git a/stream/filt_dcte.c b/stream/filt_dcte.c index 547721b4..74f6bbd3 100644 --- a/stream/filt_dcte.c +++ b/stream/filt_dcte.c @@ -1,6 +1,6 @@ #include <fitz.h> -#include "dctc.h" +#include "filt_dctc.h" typedef struct fz_dcte_s fz_dcte; diff --git a/stream/filt_faxd.c b/stream/filt_faxd.c index d8686a08..ade56c73 100644 --- a/stream/filt_faxd.c +++ b/stream/filt_faxd.c @@ -1,7 +1,7 @@ #include <fitz.h> -#include "faxd.h" -#include "faxc.h" +#include "filt_faxd.h" +#include "filt_faxc.h" enum { diff --git a/stream/filt_faxdtab.c b/stream/filt_faxdtab.c index 8e387d03..6efcf053 100644 --- a/stream/filt_faxdtab.c +++ b/stream/filt_faxdtab.c @@ -4,7 +4,7 @@ /* as the files scfetab.c and scfdgen.c from which it was derived. */ /* Consult those files for the licensing terms and conditions. */ -#include "faxd.h" +#include "filt_faxd.h" /* White decoding table. */ const cfd_node cf_white_decode[] = { diff --git a/stream/filt_faxe.c b/stream/filt_faxe.c index e96c5ace..c9155e01 100644 --- a/stream/filt_faxe.c +++ b/stream/filt_faxe.c @@ -1,7 +1,7 @@ #include <fitz.h> -#include "faxe.h" -#include "faxc.h" +#include "filt_faxe.h" +#include "filt_faxc.h" /* TODO: honor Rows param */ diff --git a/stream/filt_faxetab.c b/stream/filt_faxetab.c index 409039f4..34914c2d 100644 --- a/stream/filt_faxetab.c +++ b/stream/filt_faxetab.c @@ -1,6 +1,6 @@ /* Tables for CCITTFaxEncode filter */ -#include "faxe.h" +#include "filt_faxe.h" /* Define the end-of-line code. */ const cfe_code cf_run_eol = {1, 12}; |