From 2707d33a1b313d300ca6177f1885b30f628851d5 Mon Sep 17 00:00:00 2001 From: Erlend Ese Date: Thu, 14 May 2026 01:46:45 +0200 Subject: [PATCH] use standard preprocessor macro --- src/SHA1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SHA1.c b/src/SHA1.c index 5a241af0..adf502d7 100644 --- a/src/SHA1.c +++ b/src/SHA1.c @@ -17,7 +17,7 @@ #include "SHA1.h" // In the source files using endian functions (like SHA1.c): -#ifdef QNX_OS +#ifdef __QNXNTO__ #include #define be32toh(x) ENDIAN_BE32(x) #define htobe32(x) ENDIAN_BE32(x)