Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com To: cygwin AT cygwin DOT com From: "Beman Dawes" Subject: usr/include/stdint.h fix Date: Sun, 29 May 2005 21:22:56 -0400 Lines: 17 Message-ID: X-RFC2646: Format=Flowed; Original X-IsSubscribed: yes usr/include/stdint.h beginning at line 177 reads: /* Macros for greatest-width integer constant expressions */ #define INTMAX_C(x) x ## L #define UINTMAX_C(x) x ## UL That should be: /* Macros for greatest-width integer constant expressions */ #define INTMAX_C(x) x ## LL #define UINTMAX_C(x) x ## ULL --Beman Dawes -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/