ciao,
I do not know where to report such problems, so...
There is a syntax error in the file /usr/include/sys/types.h.
typedef struct {int r[1]} *physadr;
should be
typedef struct {int r[1];} *physadr; <-Note the additional ";"
K&R seem to indicate that structures must always end in a semi-colon.
(peace chance)
mas
--