summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorAnkit Das <ankitdas2k@gmail.com>2022-02-02 23:38:41 +0530
committerPauli <pauli@openssl.org>2022-02-07 11:57:18 +1100
commit25a0a44dc6223e515f5e91e41798cccf09c5612b (patch)
treede8c9097e7be863559642e5121f40a3b765d4ded /apps
parent984cc9a0284ee4800862aa305f9f178827baf459 (diff)
Fix SIZE_MAX not defined on z/OS etc
Fixes openssl#17629 by including internal/numbers.h which defines SIZE_MAX CLA: trivial Fixes #17629 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17632)
Diffstat (limited to 'apps')
-rw-r--r--apps/speed.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/speed.c b/apps/speed.c
index 89a55c4efa..a790f280db 100644
--- a/apps/speed.c
+++ b/apps/speed.c
@@ -29,6 +29,7 @@
#include <math.h>
#include "apps.h"
#include "progs.h"
+#include "internal/numbers.h"
#include <openssl/crypto.h>
#include <openssl/rand.h>
#include <openssl/err.h>