[sane-devel] missing #include <sys/tipes.h> in sanei_lm983x.c

Franz Bakan Franz Bakan" <fbakan@gmx.net
Sat, 12 Jan 2002 13:55:46 +0100 (CET)


On Fri, 11 Jan 2002 19:05:54 +0100, Henning Meier-Geinitz wrote:

>> sanei_lm983x.c
>> 
>> #include <sys/types.h>
>> 
>> is missing at least for compiling on OS/2.
>
>Fixed. Just out of curiosity: Which type the complier didn't know?
>size_t?

gcc 2.81 and 3.02 complain about
 u_long
in line 295

changing
 u_long
 to
 unsigned long
 also works (without including sys/types)

Bye,
Franz