FloatImg.h uses types like int32_t that may have not been declared in .c files and so rely on the import order : moving FloatImg.h at the top of C files breaks the build.
FloatImg.h uses types like int32_t that may have not been declared in .c files and so rely on the import order : moving FloatImg.h at the top of C files breaks the build.
Adding
```
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
```
At the top of FloatImg.h fixes this problem.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
FloatImg.h uses types like int32_t that may have not been declared in .c files and so rely on the import order : moving FloatImg.h at the top of C files breaks the build.
Adding
At the top of FloatImg.h fixes this problem.