On Fri, Nov 01, 2013 at 11:15:02AM -0700, Steve Ellcey wrote: > --- a/gcc/system.h > +++ b/gcc/system.h > @@ -1060,6 +1060,14 @@ helper_const_non_const_cast (const char *p) > #define DEBUG_VARIABLE > #endif > > +#ifndef HAVE_CADDR_T > +typedef char *caddr_t; > +#endif > + > +#ifndef HAVE_SSIZE_T > +typedef int ssize_t > +#endif
Missing ';'? Marek