X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Finternals%2F_PDCLIB_config.h;h=13600b41148c307dc1ada973bca11a071c61da90;hb=642e624903e01e2e3809f85f65cfb22e967e122c;hp=e9cde3c01cf3d93cc45a77f901be659ada81d64c;hpb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;p=pdclib diff --git a/platform/example/internals/_PDCLIB_config.h b/platform/example/internals/_PDCLIB_config.h old mode 100644 new mode 100755 index e9cde3c..13600b4 --- a/platform/example/internals/_PDCLIB_config.h +++ b/platform/example/internals/_PDCLIB_config.h @@ -145,8 +145,8 @@ struct _PDCLIB_lldiv_t /* Large enough an integer to hold all character codes of the largest supported locale. */ -#define _PDCLIB_wchar unsigned short -#define _PDCLIB_WCHAR USHRT +#define _PDCLIB_wchar unsigned int +#define _PDCLIB_WCHAR UINT /* (Signed) integer type capable of taking the (cast) value of a void *, and having the value cast back to void *, comparing equal to the original. @@ -219,7 +219,7 @@ struct _PDCLIB_imaxdiv_t your compiler. */ -#ifdef __i386 +#if defined( __i386 ) /* The following generic implementation works only for pure stack-based architectures, and only if arguments are aligned to pointer @@ -235,7 +235,7 @@ typedef char * _PDCLIB_va_list; #define _PDCLIB_va_end( ap ) ( (ap) = (void *)0, (void)0 ) #define _PDCLIB_va_start( ap, parmN ) ( (ap) = (char *) &parmN + ( _PDCLIB_va_round(parmN) ), (void)0 ) -#elif __x86_64 +#elif defined( __x86_64 ) /* No way to cover x86_64 with a generic implementation, as it uses register- based parameter passing. Using the GCC builtins here. @@ -384,4 +384,9 @@ typedef int _PDCLIB_fd_t; /* Default is 4 (0, ERANGE, EDOM, EILSEQ). */ #define _PDCLIB_ERRNO_MAX 4 +#ifdef __CYGWIN__ +typedef unsigned int wint_t; +#endif + + #endif