This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

usr/include/stdint.h fix


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/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]