* config/m68k/xm-hp300bsd.h: Include <sys/param.h> to avoid INT_MAX
authorJim Kingdon <jkingdon@engr.sgi.com>
Tue, 11 May 1993 05:17:40 +0000 (05:17 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Tue, 11 May 1993 05:17:40 +0000 (05:17 +0000)
redefined warnings.

gdb/ChangeLog
gdb/config/m68k/xm-hp300bsd.h

index e448b55b24531cc963724f25f0127b868dd74b5e..1f25aa032d6619bc51035aca001d0293e81177e5 100644 (file)
@@ -1,3 +1,8 @@
+Mon May 10 22:13:23 1993  Jim Kingdon  (kingdon@cygnus.com)
+
+       * config/m68k/xm-hp300bsd.h: Include <sys/param.h> to avoid INT_MAX
+       redefined warnings.
+
 Mon May 10 20:00:43 1993  Fred Fish  (fnf@cygnus.com)
 
        * README, NEWS:  Update for gdb 4.9 release.
index 54800fdc22646bd4b941688314767c61eaa7f9d4..d5b670356577689a0658847fa9c62e7ad73c68d5 100644 (file)
@@ -25,12 +25,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define        HOST_BYTE_ORDER BIG_ENDIAN
 
-/* Avoid "INT_MIN redefined" preprocessor warnings -- by defining them here,
-   exactly the same as in the system <limits.h> file.  */
-#define        UINT_MAX        4294967295      /* max value for an unsigned int */
-#define        INT_MAX         2147483647      /* max value for an int */
-#define        INT_MIN         (-2147483647-1) /* min value for an int */
-#define        LONG_MAX        2147483647      /* max value for a long */
+/* Avoid "INT_MIN redefined" preprocessor warnings by defining them here.  */
+#include <sys/param.h>
 
 /* Get rid of any system-imposed stack limit if possible.  */
 
This page took 0.02977 seconds and 4 git commands to generate.