diff options
author | David Young <dyoung@hdfgroup.org> | 2019-11-13 19:38:47 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:19:37 (GMT) |
commit | 9685e4fb64e2600fd2c9012c2ac08e3d8c576995 (patch) | |
tree | 0c2c1119e931caf22a07d7b2d9a280f4e4f3d831 | |
parent | c30b30258d1940599f384794432917927f5e7b8b (diff) | |
download | hdf5-9685e4fb64e2600fd2c9012c2ac08e3d8c576995.zip hdf5-9685e4fb64e2600fd2c9012c2ac08e3d8c576995.tar.gz hdf5-9685e4fb64e2600fd2c9012c2ac08e3d8c576995.tar.bz2 |
Undo my changes to the HD macros, hadn't really intended those to be on
this branch....
-rw-r--r-- | src/H5private.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/H5private.h b/src/H5private.h index b6bc88b..4eac82d 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -1376,25 +1376,25 @@ typedef off_t h5_stat_size_t; #define HDstrcpy(X,Y) strcpy(X,Y) #endif /* HDstrcpy */ #ifndef HDstrcspn - #define HDstrcspn strcspn + #define HDstrcspn(X,Y) strcspn(X,Y) #endif /* HDstrcspn */ #ifndef HDstrerror - #define HDstrerror strerror + #define HDstrerror(N) strerror(N) #endif /* HDstrerror */ #ifndef HDstrftime - #define HDstrftime strftime + #define HDstrftime(S,Z,F,T) strftime(S,Z,F,T) #endif /* HDstrftime */ #ifndef HDstrlen - #define HDstrlen strlen + #define HDstrlen(S) strlen(S) #endif /* HDstrlen */ #ifndef HDstrncat - #define HDstrncat strncat + #define HDstrncat(X,Y,Z) strncat(X,Y,Z) #endif /* HDstrncat */ #ifndef HDstrncmp - #define HDstrncmp strncmp + #define HDstrncmp(X,Y,Z) strncmp(X,Y,Z) #endif /* HDstrncmp */ #ifndef HDstrncpy - #define HDstrncpy strncpy + #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) #endif /* HDstrncpy */ #ifndef HDstrpbrk #define HDstrpbrk(X,Y) strpbrk(X,Y) |