summaryrefslogtreecommitdiffstats
path: root/testpar/t_pread.c
diff options
context:
space:
mode:
Diffstat (limited to 'testpar/t_pread.c')
-rw-r--r--testpar/t_pread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testpar/t_pread.c b/testpar/t_pread.c
index 5a7176a..fe4ed75 100644
--- a/testpar/t_pread.c
+++ b/testpar/t_pread.c
@@ -379,7 +379,7 @@ generate_test_file(MPI_Comm comm, int mpi_rank, int group_id)
else
text_to_write = hitchhiker_quote;
- bytes_to_write = HDstrlen(text_to_write);
+ bytes_to_write = strlen(text_to_write);
if (pass) {
if ((header = HDopen(data_filename, O_WRONLY)) < 0) {
@@ -1063,7 +1063,7 @@ main(int argc, char **argv)
* isn't true, then we can use a relative path that
* should be valid for the autotools environment.
*/
- test_argv0 = HDstrdup(argv[0]);
+ test_argv0 = strdup(argv[0]);
if ((MPI_Init(&argc, &argv)) != MPI_SUCCESS) {
fprintf(stderr, "FATAL: Unable to initialize MPI\n");