I switched to LinuxMint recently and I realized it has GCC already installed. So I decided to brake it in and realize it has no stdio.h. I add that and now it needs another for stdio.h to work. Is there a package I can get to download a bunch of basic header files?
The code below is what happened after I downloaded stdi.h into the correct file.
1 2 3 4 5
/usr/local/include/stdio.h:19:20: fatal error: _mingw.h: No such file or directory
#include <_mingw.h>
^
compilation terminated.
In file included from ssh.c:1:0:
/usr/local/include/stdio.h:19:20: fatal error: _mingw.h: No such file or directory
#include <_mingw.h>
^
compilation terminated.
Would you by any chance know why? Is _mingw.h not standard?