don't redefine types.

UINTMAX_TYPE / INTMAX_TYPE are mostly not redefined on netbsd.
These choices contradict typical 64bit archs, perhaps we don't want them.

XXX is the SIZE_TYPE default for riscv reasonable?
(long unsigned int for 64bit abi, unsigned int for 32bit abi)
This commit is contained in:
maya 2019-04-15 14:19:20 +00:00
parent d7ef8f48dc
commit ab65834a8e
1 changed files with 0 additions and 9 deletions

View File

@ -62,12 +62,3 @@ Boston, MA 02111-1307, USA. */
#undef NETBSD_ENTRY_POINT
#define NETBSD_ENTRY_POINT "_start"
#undef SIZE_TYPE
#define SIZE_TYPE "long unsigned int"
#undef INTMAX_TYPE
#define INTMAX_TYPE "long long int"
#undef UINTMAX_TYPE
#define UINTMAX_TYPE "long long unsigned int"