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 /src/H5TB.c | |
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 'src/H5TB.c')
-rw-r--r-- | src/H5TB.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -58,13 +58,13 @@ /* $Id$ */ -#include <H5private.h> /*library */ -#include <H5Eprivate.h> /*error handling */ -#include <H5MMprivate.h> /*Core memory management */ -#include <H5FLprivate.h> /*Free Lists */ -#include <H5TBprivate.h> /*Threaded, balanced, binary trees */ +#include "H5private.h" /*library */ +#include "H5Eprivate.h" /*error handling */ +#include "H5MMprivate.h" /*core memory management */ +#include "H5FLprivate.h" /*free lists */ +#include "H5TBprivate.h" /*threaded, balanced, binary trees */ -# define KEYcmp(k1,k2,a) ((NULL!=compar) ? (*compar)( k1, k2, a) \ +#define KEYcmp(k1,k2,a) ((NULL!=compar) ? (*compar)( k1, k2, a) \ : HDmemcmp( k1, k2, 0<(a) ? (a) : HDstrlen(k1) ) ) /* Return maximum of two scalar values (use arguments w/o side effects): */ |