diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-06-28 20:01:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 20:01:26 (GMT) |
commit | 96d89bcae7b47402b97e87787a007d558ddcb66b (patch) | |
tree | 8f5cc2ef9daca6818f440c3d12359b64ff16eea8 /src | |
parent | d87efd3a46f55d4f994e79f5d8c88b56d866da34 (diff) | |
download | hdf5-96d89bcae7b47402b97e87787a007d558ddcb66b.zip hdf5-96d89bcae7b47402b97e87787a007d558ddcb66b.tar.gz hdf5-96d89bcae7b47402b97e87787a007d558ddcb66b.tar.bz2 |
Rename HDsystem() to system() (#3197)
system() is only used in the iopipe test and the things it calls
(which are POSIX-y) are protected by an ifdef.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5private.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/H5private.h b/src/H5private.h index f14b54b..c08da40 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -1158,9 +1158,6 @@ H5_DLL H5_ATTR_CONST int Nflock(int fd, int operation); #ifndef HDsymlink #define HDsymlink(F1, F2) symlink(F1, F2) #endif -#ifndef HDsystem -#define HDsystem(S) system(S) -#endif #ifndef HDtime #define HDtime(T) time(T) #endif |