From 9669710cc3bd047b8a3a4a8d0e5490c31d4fd5bf Mon Sep 17 00:00:00 2001 From: Colin Leroy-Mira Date: Thu, 7 Sep 2023 21:36:39 +0200 Subject: [PATCH] Fix usage of __OPT_i__ --- include/arpa/inet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/arpa/inet.h b/include/arpa/inet.h index 2fb47388d..5f4b994e8 100644 --- a/include/arpa/inet.h +++ b/include/arpa/inet.h @@ -31,7 +31,7 @@ #ifndef _ARPA_INET_H #define _ARPA_INET_H -#ifndef __OPT_i__ +#if (__OPT_i__ < 200) int __fastcall__ ntohs (int val); int __fastcall__ htons (int val); #else