I want to exercise some UNIX commands using C language. When I include <unistd.h> header file and when I use fork() method it gives me a compile time error: "can not include unistd.h". I check on he Internet and the fork() method is available in <unistd.h> header file only. Please help me on this.
- Is now
<unistd.h>is replaced with any other header file? - Even if I use
"process.h", that does not have a definition forfork(). - How I can use
fork()method?
I have DOSBox v0.74 on my system (Windows 7, 64-bit).

<unistd.h>? Does it document its presence? If not, maybe try Cygwin instead; that does provide afork()emulation and<unistd.h>. – Jonathan Leffler Aug 22 '12 at 5:44forkfunction, and as neither is a Unix variant they of course doesn't have the<unistd.h>header file. – Joachim Pileborg Aug 22 '12 at 5:44