Message-Id: <199809092038.UAA27168@out1.ibm.net> From: "Mark E." To: djgpp-workers AT delorie DOT com Date: Wed, 9 Sep 1998 16:38:05 +0000 MIME-Version: 1.0 Content-type: Multipart/Mixed; boundary=Message-Boundary-17153 Subject: patch to limits.h Precedence: bulk --Message-Boundary-17153 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body This patch adds macros for WCHAR_MIN, WCHAR_MAX, WINT_MIN, and WINT_MAX to Mark -- Mark E. snowball3 AT usa DOT net http://members.xoom.com/snowball3/ --Message-Boundary-17153 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Text from file 'limits.diff' *** include/limits.h Thu Jan 1 22:13:44 1998 --- include/limits.h Wed Sep 9 15:01:12 1998 *************** *** 23,28 **** --- 23,32 ---- #define UINT_MAX 4294967295U #define ULONG_MAX 4294967295UL #define USHRT_MAX 65535 + #define WCHAR_MIN 0 + #define WCHAR_MAX 127 + #define WINT_MIN 0 + #define WINT_MAX 32767 #ifndef __dj_ENFORCE_ANSI_FREESTANDING --Message-Boundary-17153--