summaryrefslogtreecommitdiffstats
path: root/tools/test/perform/sio_standalone.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/test/perform/sio_standalone.h')
-rw-r--r--tools/test/perform/sio_standalone.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/tools/test/perform/sio_standalone.h b/tools/test/perform/sio_standalone.h
index 2fc644f..cadc00d 100644
--- a/tools/test/perform/sio_standalone.h
+++ b/tools/test/perform/sio_standalone.h
@@ -480,9 +480,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 */
@@ -490,7 +490,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
@@ -498,8 +498,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 */