Package: yagiuda
Version: 1.19-1
Severity: serious

Hi,

It seems your declares errno in several ways:
./src/globals.h:extern int errno;
./src/globals.h:int errno;
./src/get_number_of_elements.c:#include <errno.h>
./src/get_number_of_elements.c:extern int errno;
./src/test2.c:#include <errno.h>
./src/test2.c:extern int errno;
./src/gain.c:#include <errno.h>
./src/gain.c:extern int errno;
./src/fill_z_matrix.c:#include <errno.h>
./src/fill_z_matrix.c:extern int errno;
[...]

The only correct way of doing it is:
#include <errno.h>

And all the rest should get removed, and replaced by the include
where needed.


Kurt



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to