mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
Undo my changes to the HD macros, hadn't really intended those to be on
this branch....
This commit is contained in:
parent
560db03d66
commit
b0dd6184bc
@ -1373,25 +1373,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)
|
||||
|
Loading…
Reference in New Issue
Block a user