Skip to content

Commit

Permalink
Update types.h
Browse files Browse the repository at this point in the history
  • Loading branch information
farazrbx committed Jan 19, 2024
1 parent 793bb3e commit dce8149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wolfssl/wolfcrypt/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ typedef struct w64wrapper {

#if !defined(NO_FILESYSTEM) && !defined(NO_STDIO_FILESYSTEM)
#ifndef XGETENV
#if defined(__ORBIS__) || defined(__PROSPERO__) /* PlayStation 4 and 5 */
#ifdef NO_GETENV
#define XGETENV(x) (NULL)
#else
#include <stdlib.h>
Expand All @@ -902,7 +902,7 @@ typedef struct w64wrapper {
#endif
#if defined(OPENSSL_ALL) || defined(OPENSSL_EXTRA) || defined(OPENSSL_EXTRA_X509_SMALL)
#define XISALNUM(c) isalnum((c))
#if defined(__ORBIS__) || defined(__PROSPERO__) /* PlayStation 4 and 5 */
#ifdef NO_STDLIB_ISASCII
#define XISASCII(c) (((c) >= 0 && (c) <= 127) ? 1 : 0)
#else
#define XISASCII(c) isascii((c))
Expand Down

0 comments on commit dce8149

Please sign in to comment.