diff options
author | Søren Sandmann Pedersen <sandmann@daimi.au.dk> | 2005-05-19 14:37:53 +0000 |
---|---|---|
committer | Søren Sandmann Pedersen <sandmann@daimi.au.dk> | 2005-05-19 14:37:53 +0000 |
commit | cf0d69c7ace679f27f105c582760b9be14923aba (patch) | |
tree | ebac4aa8c4561b011fe836620d188e059c602ff3 /cxpm | |
parent | 639b3598cd0e7214010248efb62b75ef85a8e5c5 (diff) |
Thu May 19 10:36:54 2005 Søren Sandmann <sandmann@redhat.com>
Add "../lib" to INCLUDES.
Replace #include "../lib/foo" with #include "foo".
Diffstat (limited to 'cxpm')
-rw-r--r-- | cxpm/cxpm.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cxpm/cxpm.c b/cxpm/cxpm.c index 7c2001f..6a7cd9d 100644 --- a/cxpm/cxpm.c +++ b/cxpm/cxpm.c @@ -34,7 +34,7 @@ #define CXPMPROG -#include "../lib/XpmI.h" +#include "XpmI.h" #undef xpmGetC #define xpmGetC(data) sGetc(data, data->stream.file) @@ -77,13 +77,13 @@ sUngetc(data, c, file) } /* include all the code we need (yeah, I know, quite ugly...) */ -#include "../lib/data.c" -#include "../lib/parse.c" -#include "../lib/RdFToI.c" /* only for OpenReadFile and xpmDataClose */ -#include "../lib/hashtab.c" -#include "../lib/misc.c" -#include "../lib/Attrib.c" -#include "../lib/Image.c" +#include "data.c" +#include "parse.c" +#include "RdFToI.c" /* only for OpenReadFile and xpmDataClose */ +#include "hashtab.c" +#include "misc.c" +#include "Attrib.c" +#include "Image.c" void ErrorMessage(ErrorStatus, data) |