summaryrefslogtreecommitdiffstats
path: root/apps/apps.h
diff options
context:
space:
mode:
authorViktor Dukhovni <openssl-users@dukhovni.org>2016-01-13 11:16:08 -0500
committerViktor Dukhovni <openssl-users@dukhovni.org>2016-01-13 12:37:34 -0500
commitdbc8541b86aee7b6e13e2208545fe625fc13cd7b (patch)
tree66363a79fd288ed13d187924e311e54514d8a7f9 /apps/apps.h
parentaa1477926769dcdf839f8fccd9db79847899aa86 (diff)
For stroimax need C99 inttypes.h
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/apps.h')
-rw-r--r--apps/apps.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/apps.h b/apps/apps.h
index 3ab453bef8..e242414c11 100644
--- a/apps/apps.h
+++ b/apps/apps.h
@@ -385,7 +385,7 @@ int opt_format(const char *s, unsigned long flags, int *result);
int opt_int(const char *arg, int *result);
int opt_ulong(const char *arg, unsigned long *result);
int opt_long(const char *arg, long *result);
-#if defined(INTMAX_MAX) && defined(UINTMAX_MAX)
+#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
int opt_imax(const char *arg, intmax_t *result);
int opt_umax(const char *arg, uintmax_t *result);
#endif