tbeu / matio

MATLAB MAT File I/O Library
https://matio.sourceforge.io
BSD 2-Clause "Simplified" License
338 stars 97 forks source link

fix autoconf getopt_long check #195

Closed niclasr closed 1 year ago

niclasr commented 1 year ago

NULL is defined in stddef.h according to the C11 standard, so include it if it exists. opt is missing its data type so compilation of the code always fails. Fix it by adding int, the return type of getopt_long.

coveralls commented 1 year ago

Coverage Status

Coverage increased (+0.5%) to 77.314% when pulling 858a363ad2f03e165d0184bb05b4399751bcee84 on niclasr:fix-getopt_long-check into d4d2eccafb4fa658a2e77840ea52ca67a4f6248f on tbeu:master.

tbeu commented 1 year ago

Thanks for the fix. Very appreciated.