summaryrefslogtreecommitdiffstats
path: root/apps/apps.h
diff options
context:
space:
mode:
authorViktor Dukhovni <openssl-users@dukhovni.org>2016-01-29 17:23:03 -0500
committerViktor Dukhovni <openssl-users@dukhovni.org>2016-01-29 18:46:55 -0500
commitea5e0c1caf4ea6731d09edf36a5ae57d6e60cd10 (patch)
tree2c1dd6b185d0b5842d98dd39de44de573b6894e4 /apps/apps.h
parent826e9e54460b30c8911f8ab28811f1961c9d63cd (diff)
Make opt_imax visible in all apps
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/apps.h')
-rw-r--r--apps/apps.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/apps.h b/apps/apps.h
index 99bcd5098a..b6e894de39 100644
--- a/apps/apps.h
+++ b/apps/apps.h
@@ -138,6 +138,15 @@
# define openssl_fdset(a,b) FD_SET(a, b)
# endif
+# if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L && \
+ defined(INTMAX_MAX) && defined(UINTMAX_MAX)
+int opt_imax(const char *value, intmax_t *result);
+int opt_umax(const char *value, uintmax_t *result);
+# else
+# define opt_imax opt_long
+# define opt_umax opt_ulong
+# endif
+
int app_RAND_load_file(const char *file, int dont_warn);
int app_RAND_write_file(const char *file);
/*