>From what I can tell, the following are not being #defined or typedef'd on your platform. mode_t: should be an unsigned long size_t: should be an unsigned long ssize_t: should be a signed long guint32: should be an unsigned 32 bit int mode_t should be #included in fnctl.h. as for line 52 in twips.c, you should just cast the result to a float because 25.0 is interpreted to be a double and the return value is a float. Dom typedef unsigned long mode_t; typedef unsigned long size_t; typedef /* signed */ long ssize_t; typedef unsigned int guint32;
