summaryrefslogtreecommitdiffstats
path: root/tools/test/perform/pio_standalone.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/test/perform/pio_standalone.h')
-rw-r--r--tools/test/perform/pio_standalone.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/tools/test/perform/pio_standalone.h b/tools/test/perform/pio_standalone.h
index 5cc9a63..1b83e21 100644
--- a/tools/test/perform/pio_standalone.h
+++ b/tools/test/perform/pio_standalone.h
@@ -465,9 +465,9 @@ extern char * strdup(const char *s);
/** From h5tools_utils.h **/
-H5_DLLVAR int H5_opterr; /* getoption prints errors if this is on */
-H5_DLLVAR int H5_optind; /* token pointer */
-H5_DLLVAR const char *H5_optarg; /* flag argument (or value) */
+extern int opt_err; /* getoption prints errors if this is on */
+extern int opt_ind; /* token pointer */
+extern const char *opt_arg; /* flag argument (or value) */
enum h5_arg_level {
no_arg = 0, /* doesn't take an argument */
@@ -475,7 +475,7 @@ enum h5_arg_level {
optional_arg /* argument is optional */
};
-struct h5_long_options {
+struct long_options {
const char * name; /* Name of the long option */
enum h5_arg_level has_arg; /* Whether we should look for an arg */
char shortval; /* The shortname equivalent of long arg
@@ -483,8 +483,7 @@ struct h5_long_options {
*/
};
-extern int H5_get_option(int argc, const char *const *argv, const char *opt,
- const struct h5_long_options *l_opt);
+extern int get_option(int argc, const char *const *argv, const char *opt, const struct long_options *l_opt);
extern int nCols; /*max number of columns for outputting */