diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-05-15 21:28:04 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-05-15 21:28:04 (GMT) |
commit | c514abd4967c7485d8341b036ba4c3848f7fff15 (patch) | |
tree | deb4aa669aa3aca21e0ff820673a07c89faacc55 /hl/tools/gif2h5 | |
parent | a31d4b8619c9be7c4a0b9c8c3fcb2ffa888329ee (diff) | |
download | hdf5-c514abd4967c7485d8341b036ba4c3848f7fff15.zip hdf5-c514abd4967c7485d8341b036ba4c3848f7fff15.tar.gz hdf5-c514abd4967c7485d8341b036ba4c3848f7fff15.tar.bz2 |
[svn-r3934] Purpose:
Code Update
Description:
Ported change from the 1.5 branch to the 1.4 branch where all HDF5
include files are in quotes instead of angle brackets:
#include "hdf5_file.h"
instead of
#include <hdf5_file.h>
Platforms tested:
Linux
Diffstat (limited to 'hl/tools/gif2h5')
-rw-r--r-- | hl/tools/gif2h5/gif.h | 2 | ||||
-rw-r--r-- | hl/tools/gif2h5/gif2hdf.c | 8 | ||||
-rw-r--r-- | hl/tools/gif2h5/gif2mem.c | 5 |
3 files changed, 6 insertions, 9 deletions
diff --git a/hl/tools/gif2h5/gif.h b/hl/tools/gif2h5/gif.h index f697881..7f1d042 100644 --- a/hl/tools/gif2h5/gif.h +++ b/hl/tools/gif2h5/gif.h @@ -6,7 +6,7 @@ #ifndef GIF_H #define GIF_H 1 -#include <hdf5.h> +#include "hdf5.h" #include <stdio.h> #include <stdlib.h> diff --git a/hl/tools/gif2h5/gif2hdf.c b/hl/tools/gif2h5/gif2hdf.c index 0211143..76f522e 100644 --- a/hl/tools/gif2h5/gif2hdf.c +++ b/hl/tools/gif2h5/gif2hdf.c @@ -1,14 +1,12 @@ -/* #include <hdf.h> */ +/* #include "hdf.h" */ #include "gif.h" #include <string.h> #include <stdio.h> #include <stdlib.h> + int -main(argv , argc) -int argv; -char *argc[]; +main(int argv , char *argc[]) { - GIFTOMEM GifMemoryStruct; GIFIMAGEDESC gifImageDesc; diff --git a/hl/tools/gif2h5/gif2mem.c b/hl/tools/gif2h5/gif2mem.c index 92ca8e5..127ddd6 100644 --- a/hl/tools/gif2h5/gif2mem.c +++ b/hl/tools/gif2h5/gif2mem.c @@ -22,14 +22,13 @@ \****************************************************************************/ #include <stdio.h> #include "gif.h" -/* #include <hdf.h> */ +/* #include "hdf.h" */ #define VERSION "1.00" extern int EndianOrder; GIFTOMEM -Gif2Mem(MemGif) -BYTE *MemGif; +Gif2Mem(BYTE *MemGif) { /* ** The gif structure outline for passing data to memory |