Linux >> Windows files
Hi:
I understand that C is portable if compiled for the OS.
I'm trying to use code that includes these:
#include <unistd.h>
#include <fcntl.h>
#include <sys/wait.h>
#include <err.h>
These are Linux files that apparantly depend on a Linux OS w/ Linux functionality.
I'm guessing that this code is not executable in Windows?
How can I make it executable in Windows?
|