From: Pali Rohár Date: Thu, 10 Feb 2022 12:33:46 +0000 (+0100) Subject: libpci: i386-io-windows.h: Fix comment about CRTDLL X-Git-Tag: v3.8.0~28^2 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=addd89fe60d62faa134e361f562a2fed8e74d91a;p=pciutils.git libpci: i386-io-windows.h: Fix comment about CRTDLL There is no 64-bit version of CRTDLL library. MinGW-w64 provided bogus 64-bit import library for non-existent runtime DLL library, which was recently deleted. --- diff --git a/lib/i386-io-windows.h b/lib/i386-io-windows.h index 6cf3a25..9cd9cd9 100644 --- a/lib/i386-io-windows.h +++ b/lib/i386-io-windows.h @@ -37,10 +37,9 @@ #define _inpd(x) __indword(x) #elif defined(__CRTDLL__) /* - * Old CRTDLL library does not provide I/O port functions. Even it is the oldest - * CRT library it exists also in 64-bit variant. Implement I/O port functions - * via inline assembly just for 32-bit mode as 64-bit mode uses above - * header. + * Old 32-bit CRTDLL library does not provide I/O port functions. As this + * library exists only in 32-bit mode variant, implement I/O port functions + * via 32-bit inline assembly. */ static inline int _outp(unsigned short port, int databyte) {