CarletonURocketry / fetcher

A QNX process for fetching data from sensors over I2C.
https://carletonurocketry.github.io/fetcher/
GNU General Public License v3.0
1 stars 0 forks source link

Replace `errno_t` with `int` #34

Open linguini1 opened 1 month ago

linguini1 commented 1 month ago

Turns out that errno_t is not a standard type (see this Stack Overflow response for more info).

All instance of errno_t in our code base should be replaced by int to maximize portability.