This file contains: unsigned long long _rand_next; "long long" is not an ASNI standard feature and compiler with strict warnings fails. Suggested solution: __extension__ unsigned long long _rand_next; Serge