Avoid using BIO streams in bioprinttest.c
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3243)
This commit is contained in:
parent
a9c6d22105
commit
f044cd05a1
2 changed files with 66 additions and 0 deletions
|
@ -176,7 +176,13 @@ DECLARE_COMPARISONS(char, char)
|
|||
DECLARE_COMPARISONS(unsigned char, uchar)
|
||||
DECLARE_COMPARISONS(long, long)
|
||||
DECLARE_COMPARISONS(unsigned long, ulong)
|
||||
/*
|
||||
* Because this comparison uses a printf format specifier that's not
|
||||
* universally known (yet), we provide an option to not have it declared.
|
||||
*/
|
||||
# ifndef TESTUTIL_NO_size_t_COMPARISON
|
||||
DECLARE_COMPARISONS(size_t, size_t)
|
||||
# endif
|
||||
|
||||
/*
|
||||
* Pointer comparisons against other pointers and null.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue