From 6c7b8b1043a45fc0a3ba537cbb7b14f8a7de14ef Mon Sep 17 00:00:00 2001 From: Martynas Venckus Date: Mon, 18 May 2009 18:42:55 +0000 Subject: INTMAX_TYPE / UINTMAX_TYPE are always in terms of long long. reported by sturm@. fixes libarchive on sparc64 for naddy@, sturm@. mips is missing them too; but it has not been tested. ok millert@, miod@. --- gnu/usr.bin/gcc/gcc/config/sparc/openbsd64.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/usr.bin/gcc/gcc/config/sparc/openbsd64.h b/gnu/usr.bin/gcc/gcc/config/sparc/openbsd64.h index ea77d6360aa..af9e8f763a0 100644 --- a/gnu/usr.bin/gcc/gcc/config/sparc/openbsd64.h +++ b/gnu/usr.bin/gcc/gcc/config/sparc/openbsd64.h @@ -58,6 +58,12 @@ Boston, MA 02111-1307, USA. */ " /* Layout of source language data types. */ +#undef INTMAX_TYPE +#define INTMAX_TYPE "long long int" + +#undef UINTMAX_TYPE +#define UINTMAX_TYPE "long long unsigned int" + #undef WCHAR_TYPE #define WCHAR_TYPE "int" -- cgit v1.2.3