diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-13 17:51:19 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-13 17:51:19 +0000 |
commit | 925593532192600b56dd2ae974635aaf735d3f1c (patch) | |
tree | ef74f2516f5dfe401e2b241ac083cd271c349fd5 /gnu/egcs/gcc/config/pa | |
parent | 03c6e34031dca0e5942b1c2a8afadd4b0326194e (diff) |
Adapt to the machine/_types.h changes; size_t and ptrdiff_t are now
defined in terms of long, not int on all architectures.
Diffstat (limited to 'gnu/egcs/gcc/config/pa')
-rw-r--r-- | gnu/egcs/gcc/config/pa/openbsd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/egcs/gcc/config/pa/openbsd.h b/gnu/egcs/gcc/config/pa/openbsd.h index 7cbbf1c6ffe..6599a342941 100644 --- a/gnu/egcs/gcc/config/pa/openbsd.h +++ b/gnu/egcs/gcc/config/pa/openbsd.h @@ -48,12 +48,12 @@ Boston, MA 02111-1307, USA. */ /* Layout of source language data types. */ -/* This must agree with <machine/ansi.h> */ +/* This must agree with <machine/_types.h> */ #undef SIZE_TYPE -#define SIZE_TYPE "unsigned int" +#define SIZE_TYPE "long unsigned int" #undef PTRDIFF_TYPE -#define PTRDIFF_TYPE "int" +#define PTRDIFF_TYPE "long int" #undef WCHAR_TYPE #define WCHAR_TYPE "int" |